:root {
  --navy-950:#050b1a;
  --navy-900:#0a1530;
  --navy-800:#0f1e42;
  --navy-700:#152a58;
  --blue-500:#2b74d4;
  --blue-400:#4f92ea;
  --gold-300:#f0d38a;
  --gold-400:#d9b45c;
  --gold-600:#a67c2e;
  --cream:#f6efdd;
  --crimson:#8f2340;
  --shadow-gold: 0 0 18px rgba(217,180,92,0.55);
}

* {
    box-sizing:border-box;
    margin:0;
    padding:0;
}

html { 
    scroll-behavior:smooth;
}

body {
  background:var(--navy-950);
  color:var(--cream);
  font-family:'Heebo', sans-serif;
  line-height:1.6;
  overflow-x:hidden;
}

h1,h2,h3,.display {
  font-family:'Suez One', serif;
  font-weight:400;
  letter-spacing:0.5px;
}

a {
    color:inherit;
    text-decoration:none;
}

img {
    max-width:100%;
    display:block;
}

.container {
  max-width:960px;
  margin:0 auto;
  padding:0 24px;
}

/* ===== TOP BAR ===== */
.topbar {
  text-align:center;
  padding:22px 0 10px;
  background:linear-gradient(180deg, var(--navy-950), transparent);
}

.topbar-logo {
  width:76px;
  height:76px;
  border-radius:14px;
  margin:0 auto 10px;
  box-shadow:0 0 0 1px rgba(217,180,92,0.35), 0 8px 20px rgba(0,0,0,0.4);
}

.topbar-text {
  font-size:13px;
  letter-spacing:2px;
  color:var(--gold-400);
}

/* ===== HERO ===== */
.hero {
  position:relative;
  padding:20px 0 70px;
  text-align:center;
  background:
    radial-gradient(ellipse 900px 600px at 50% -10%, rgba(43,116,212,0.35), transparent 60%),
    radial-gradient(ellipse 700px 500px at 50% 40%, rgba(217,180,92,0.10), transparent 65%),
    var(--navy-950);
  overflow:hidden;
}

.hero::before {
  content:"";
  position:absolute;
  inset:0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 60px);
  pointer-events:none;
}

.spotlight-cone {
  position:absolute;
  top:-80px; left:50%;
  transform:translateX(-50%);
  width:1200px; height:520px;
  background:conic-gradient(from 200deg at 50% 0%, transparent 0deg, rgba(79,146,234,0.16) 40deg, transparent 80deg);
  filter:blur(6px);
  pointer-events:none;
}

.hero-photo-wrap {
  position:relative;
  width:min(360px, 70vw);
  margin:0 auto 8px;
  border-radius:50%;
  overflow:hidden;
  aspect-ratio:1/1;
  box-shadow:0 0 0 3px var(--gold-400), 0 0 40px rgba(217,180,92,0.35);
}

.hero-photo-wrap img {
  width:100%; height:100%;
  object-fit:cover;
  object-position:50% 20%;
  filter:saturate(1.05) contrast(1.03);
}

.hero-photo-glow {
  position:absolute;
  inset:-30px;
  background:radial-gradient(circle, rgba(79,146,234,0.35), transparent 65%);
  z-index:-1;
  filter:blur(10px);
  display:inline-block;
  font-size:14px;
  letter-spacing:3px;
  color:var(--gold-300);
  border:1px solid var(--gold-600);
  border-radius:30px;
  padding:6px 22px;
  margin-bottom:26px;
  background:rgba(217,180,92,0.06);
}

.tagline-strike {
  font-size:16px;
  color:#9fb2d8;
  margin-bottom:6px;
}

.tagline-strike b {
    color:var(--gold-300);
    font-weight:500;
}

/* marquee frame around the hero title */
.marquee-frame {
  position:relative;
  display:inline-block;
  margin:18px auto 22px;
  padding:34px 46px;
  border:2px solid var(--gold-400);
  border-radius:14px;
  background:linear-gradient(180deg, rgba(15,30,66,0.6), rgba(10,21,48,0.6));
}

.marquee-frame::before,
.marquee-frame::after {
  content:"";
  position:absolute;
  left:10px; right:10px;
  height:2px;
  display:flex;
  background-image: radial-gradient(circle, var(--gold-300) 2.4px, transparent 2.6px);
  background-size: 22px 100%;
  background-repeat: repeat-x;
  animation: bulbs 1.6s steps(2) infinite;
}

.marquee-frame::before {
    top:-4px;
}
.marquee-frame::after {
    bottom:-4px;
}
@keyframes bulbs {
  0%{ filter: drop-shadow(0 0 3px var(--gold-300)); opacity:1; }
  50%{ filter: drop-shadow(0 0 0px var(--gold-300)); opacity:0.45; }
  100%{ filter: drop-shadow(0 0 3px var(--gold-300)); opacity:1; }
}

.hero-name {
  font-size:clamp(46px, 9vw, 88px);
  color:var(--cream);
  text-shadow: var(--shadow-gold);
  line-height:1.05;
}

.hero-role {
  margin-top:10px;
  font-size:18px;
  color:var(--blue-400);
  letter-spacing:1px;
}

.hero-headline {
  max-width:640px;
  margin:26px auto 8px;
  font-size:clamp(24px, 4vw, 34px);
  color:var(--cream);
}

.hero-sub {
  max-width:560px;
  margin:0 auto 34px;
  color:#b9c6e6;
  font-size:16px;
}

.cta-row {
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:14px;
}

.btn {
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:16px 34px;
  border-radius:8px;
  font-size:18px;
  font-weight:700;
  cursor:pointer;
  border:none;
  transition:transform .15s ease, box-shadow .15s ease;
}

.btn-primary {
  background:linear-gradient(180deg, var(--gold-300), var(--gold-600));
  color:#241704;
  box-shadow:0 8px 24px rgba(217,180,92,0.28);
}

.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 12px 28px rgba(217,180,92,0.4); }

.btn-ghost {
  background:transparent;
  border:1px solid var(--blue-400);
  color:var(--blue-400);
}

.btn-ghost:hover{ background:rgba(79,146,234,0.1); }

.hero-note{
  font-size:13px;
  color:#7d8cb0;
  letter-spacing:0.5px;
}
/* ===== SECTION HEADERS ===== */
.section{ padding:70px 0; position:relative; }
.section-title{
  text-align:center;
  font-size:clamp(28px,4vw,38px);
  margin-bottom:10px;
  color:var(--cream);
}
.section-title span{ color:var(--gold-400); }
.section-sub{
  text-align:center;
  color:#93a3c8;
  max-width:520px;
  margin:0 auto 46px;
  font-size:15px;
}
.divider{
  width:70px; height:3px;
  background:linear-gradient(90deg, transparent, var(--gold-400), transparent);
  margin:0 auto 46px;
}
/* ===== ABOUT / TICKETS ===== */
.about{ background:var(--navy-900); }
.chips{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
  max-width:760px;
  margin:0 auto;
}
.chip{
  position:relative;
  background:var(--navy-800);
  border:1px solid rgba(217,180,92,0.35);
  border-radius:10px;
  padding:14px 20px;
  font-size:15px;
  color:var(--cream);
  display:flex;
  align-items:center;
  gap:10px;
}
.chip::before{
  content:"★";
  color:var(--gold-400);
  font-size:13px;
}
/* ===== CURRICULUM ===== */
.curriculum-card{
  background:linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border:1px solid rgba(79,146,234,0.25);
  border-radius:18px;
  padding:44px 40px;
  max-width:760px;
  margin:0 auto;
}
.curr-list{ list-style:none; display:grid; gap:20px; }
.curr-list li{
  display:flex;
  gap:16px;
  align-items:flex-start;
  font-size:17px;
  color:#dfe6f5;
}
.mask-icon{
  flex:0 0 auto;
  width:34px; height:34px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(217,180,92,0.12);
  border-radius:8px;
  font-size:17px;
  color:var(--gold-300);
}
/* ===== BONUS AI ===== */
.bonus{
  background:
    radial-gradient(ellipse 600px 400px at 20% 20%, rgba(43,116,212,0.25), transparent 60%),
    var(--navy-950);
  border-top:1px solid rgba(217,180,92,0.15);
  border-bottom:1px solid rgba(217,180,92,0.15);
}
.bonus-inner{
  display:flex;
  gap:36px;
  align-items:center;
  max-width:760px;
  margin:0 auto;
  background:var(--navy-800);
  border:1px solid rgba(79,146,234,0.35);
  border-radius:18px;
  padding:36px;
  flex-wrap:wrap;
}
.bonus-badge{
  flex:0 0 auto;
  width:78px; height:78px;
  border-radius:14px;
  background:linear-gradient(160deg, var(--blue-500), var(--navy-700));
  display:flex; align-items:center; justify-content:center;
  font-family:'Suez One';
  font-size:22px;
  color:var(--cream);
  box-shadow:0 0 22px rgba(43,116,212,0.5);
}
.bonus-text{ flex:1; min-width:220px; }
.bonus-tag{
  display:inline-block;
  font-size:12px;
  letter-spacing:2px;
  color:var(--gold-300);
  margin-bottom:8px;
}
.bonus-title{ font-size:22px; margin-bottom:8px; }
.bonus-desc{ color:#b9c6e6; font-size:15px; margin-bottom:10px; }
.bonus-handle{ color:var(--blue-400); font-weight:700; }
/* ===== LOGISTICS ===== */
.logistics{ background:var(--navy-900); }
/* ===== REGISTRATION ===== */
.register{
  background:
    radial-gradient(ellipse 700px 450px at 50% 0%, rgba(43,116,212,0.20), transparent 65%),
    var(--navy-950);
}
.register-card{
  max-width:560px;
  margin:0 auto;
  background:linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border:1px solid var(--gold-400);
  border-radius:20px;
  padding:44px 38px;
  box-shadow:0 20px 50px rgba(0,0,0,0.4);
}
.field{
  margin-bottom:20px;
}
.field label{
  display:block;
  font-size:13px;
  letter-spacing:1px;
  color:var(--gold-300);
  margin-bottom:8px;
}
.field input{
  width:100%;
  padding:14px 16px;
  border-radius:8px;
  border:1px solid rgba(217,180,92,0.35);
  background:var(--navy-950);
  color:var(--cream);
  font-family:'Heebo', sans-serif;
  font-size:15px;
  outline:none;
  transition:border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder{ color:#5c6a8c; }
.field input:focus{
  border-color:var(--blue-400);
  box-shadow:0 0 0 3px rgba(79,146,234,0.2);
}
.plan-label{
  display:block;
  font-size:13px;
  letter-spacing:1px;
  color:var(--gold-300);
  margin-bottom:10px;
}
.plan-toggle{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:26px;
}
.plan-toggle input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.plan-option{
  display:block;
  cursor:pointer;
  text-align:center;
  padding:16px 10px;
  border-radius:10px;
  border:1.5px solid rgba(217,180,92,0.3);
  background:var(--navy-950);
  transition:border-color .15s ease, background .15s ease, transform .15s ease;
}
.plan-option .plan-name{
  font-family:'Suez One';
  font-size:18px;
  color:var(--cream);
  display:block;
}
.plan-option .plan-desc{
  font-size:12px;
  color:#93a3c8;
  display:block;
  margin-top:4px;
}
.plan-toggle input:checked + .plan-option{
  border-color:var(--gold-400);
  background:linear-gradient(160deg, rgba(217,180,92,0.14), rgba(43,116,212,0.10));
  transform:translateY(-2px);
  box-shadow:0 6px 18px rgba(217,180,92,0.2);
}
.plan-toggle input:checked + .plan-option .plan-name{ color:var(--gold-300); }
.plan-option.vip::before{
  content:"★ VIP";
}
.submit-btn{
  width:100%;
  padding:17px;
  border:none;
  border-radius:8px;
  background:linear-gradient(180deg, var(--gold-300), var(--gold-600));
  color:#241704;
  font-family:'Heebo', sans-serif;
  font-weight:800;
  font-size:17px;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease;
}
.submit-btn:hover{ transform:translateY(-2px); box-shadow:0 10px 26px rgba(217,180,92,0.35); }
.form-note{
  text-align:center;
  font-size:12px;
  color:#7d8cb0;
  margin-top:16px;
}
.form-status{
  text-align:center;
  font-size:14px;
  margin-top:14px;
  min-height:18px;
}
.form-status.error{ color:#e78a9c; }
.form-status.success{ color:#8fd19e; }
.logi-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(190px,1fr));
  gap:18px;
  max-width:820px;
  margin:0 auto;
}
.logi-card{
  background:var(--navy-800);
  border:1px solid rgba(217,180,92,0.25);
  border-radius:14px;
  padding:26px 20px;
  text-align:center;
}
.logi-label{
  font-size:12px;
  letter-spacing:2px;
  color:#8091b8;
  margin-bottom:10px;
}
.logi-value{
  font-size:19px;
  color:var(--gold-300);
  font-weight:700;
}
.logi-value small{
  display:block;
  font-size:13px;
  color:#9fb2d8;
  font-weight:400;
  margin-top:4px;
}
.vip-note{
  text-align:center;
  margin-top:26px;
  color:#93a3c8;
  font-size:14px;
}
.vip-note b{ color:var(--gold-300); }
/* ===== FINAL CTA ===== */
.final{
  text-align:center;
  padding:80px 0 60px;
  background:
    radial-gradient(ellipse 700px 400px at 50% 0%, rgba(217,180,92,0.14), transparent 65%),
    var(--navy-950);
}
.final-title{
  font-size:clamp(26px,4vw,36px);
  margin-bottom:14px;
}
.final-sub{
  color:#b9c6e6;
  max-width:480px;
  margin:0 auto 30px;
  font-size:15px;
}
.phone-big{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-size:clamp(28px,5vw,40px);
  font-weight:800;
  color:var(--cream);
  background:var(--navy-800);
  border:1px solid var(--gold-400);
  border-radius:14px;
  padding:20px 40px;
  margin-bottom:18px;
  direction:ltr;
}
.limited{
  font-size:13px;
  color:var(--crimson);
  background:rgba(143,35,64,0.15);
  display:inline-block;
  padding:6px 16px;
  border-radius:20px;
  margin-bottom:36px;
  letter-spacing:0.5px;
}
footer{
  text-align:center;
  padding:26px 0 40px;
  color:#5c6a8c;
  font-size:13px;
}
footer .brand{ color:var(--gold-400); font-weight:700; }
@media (max-width:640px){
  .marquee-frame{ padding:26px 22px; }
  .bonus-inner{ flex-direction:column; text-align:center; }
  .curriculum-card{ padding:30px 24px; }
}
@media (prefers-reduced-motion: reduce){
  .marquee-frame::before, .marquee-frame::after{ animation:none; }
}