/* styles.css */
:root{
  --bg: #070E1D;
  --bg2:#0A1B3D;
  --card:#0C1630;
  --ink:#EEF2FF;
  --muted: rgba(238,242,255,.74);
  --muted2: rgba(238,242,255,.55);
  --line: rgba(255,255,255,.12);

  --gold:#D4AF37;
  --gold2:#F1D17A;

  --shadow: 0 14px 40px rgba(0,0,0,.35);
  --shadow2: 0 10px 24px rgba(0,0,0,.28);

  --radius: 18px;
  --radius2: 26px;

  --max: 1120px;

  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --serif: "Playfair Display", Georgia, serif;

  --focus: 0 0 0 3px rgba(212,175,55,.35);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(212,175,55,.14), transparent 55%),
    radial-gradient(1000px 700px at 90% 20%, rgba(74,136,255,.20), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  min-height:100vh;
  overflow-x:hidden;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  background: var(--gold);
  color:#081225;
  padding:10px 12px;
  border-radius: 12px;
  z-index:9999;
  font-weight:700;
}
.skip-link:focus{ left:12px; outline:none; box-shadow: var(--focus); }

a{ color:inherit; text-decoration:none; }
:focus-visible{ outline:none; box-shadow: var(--focus); border-radius: 12px; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar{
  height: 8px;
  background: linear-gradient(90deg, rgba(212,175,55,.9), rgba(212,175,55,.15), rgba(74,136,255,.25));
  opacity:.95;
}

/* Header / Nav */
.site-header{
  position: sticky;
  top:0;
  z-index:1000;
  backdrop-filter: blur(12px);
  background: rgba(7,14,29,.55);
  border-bottom: 1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}
.brand__mark{
  width:42px; height:42px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.14);
  display:grid; place-items:center;
  box-shadow: var(--shadow2);
  color: var(--gold);
}
.brand__mark svg{ width:24px; height:24px; }
.brand__text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand__text strong{
  font-family: var(--serif);
  letter-spacing:.3px;
  font-size: 1.02rem;
}
.brand__text span{
  font-size:.82rem;
  color: var(--muted);
  margin-top:2px;
}

.nav__toggle{
  display:inline-flex;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: var(--ink);
  border-radius: 14px;
  padding: 10px 12px;
  cursor:pointer;
}
.nav__toggleLines{
  width:22px; height:14px;
  display:inline-block;
  position:relative;
}
.nav__toggleLines::before,
.nav__toggleLines::after{
  content:"";
  position:absolute; left:0; right:0;
  height:2px; border-radius: 999px;
  background: rgba(255,255,255,.8);
}
.nav__toggleLines::before{ top:2px; }
.nav__toggleLines::after{ bottom:2px; }
.nav__toggle{ display:none; }

.nav__links{
  display:flex;
  align-items:center;
  gap: 16px;
}
.nav__links a{
  color: rgba(238,242,255,.84);
  font-size: .92rem;
  padding: 10px 10px;
  border-radius: 12px;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.nav__links a:hover{
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}
.nav__links a.is-active{
  background: rgba(212,175,55,.13);
  color: rgba(255,245,210,.96);
  border: 1px solid rgba(212,175,55,.25);
}

.nav__cta{
  display:flex;
  align-items:center;
  gap:10px;
  margin-left: 8px;
}

/* Sections */
.section{ padding: 74px 0; position:relative; }
.section--alt{
  background:
    radial-gradient(900px 440px at 20% 0%, rgba(212,175,55,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.sectionHeader{
  max-width: 820px;
  margin-bottom: 24px;
}
.sectionHeader h2{
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3.2vw, 2.25rem);
  letter-spacing: .2px;
  margin:0 0 10px;
}
.sectionHeader p{
  margin:0;
  color: var(--muted);
  line-height:1.65;
}

/* Hero */
.hero{
  padding-top: 62px;
  padding-bottom: 78px;
  overflow:hidden;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items:start;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color: rgba(255,255,255,.82);
  font-size:.95rem;
  margin: 0 0 12px;
}
.dot{
  width:10px; height:10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(212,175,55,.12);
}

/* Pricing line */
.priceLine{
  margin: 0 0 12px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap: 8px;
  color: rgba(238,242,255,.84);
}
.priceTag{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing:.2px;
  color: rgba(255,245,210,.95);
  background: rgba(212,175,55,.14);
  border: 1px solid rgba(212,175,55,.24);
}
.priceTag--soft{
  color: rgba(238,242,255,.85);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}
.priceText{
  color: var(--muted);
  font-weight: 600;
}
.priceSep{ color: rgba(255,255,255,.35); }

.hero__title{
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: .2px;
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  line-height:1.06;
  margin: 0 0 10px;
}
.hero__subtitle{
  margin: 0 0 18px;
  font-size: 1.04rem;
  color: rgba(238,242,255,.85);
}
.hero__theme{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom: 18px;
}
.pill{
  display:inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: rgba(238,242,255,.85);
  font-size:.84rem;
}
.themeText{
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: .2px;
  font-size: 1.25rem;
  color: rgba(255,245,210,.96);
}

.hero__cta{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  margin: 18px 0 22px;
}
.hero__meta{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}

.metaCard{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  padding: 14px 14px;
  box-shadow: var(--shadow2);
}
.metaCard__label{
  display:block;
  font-size: .78rem;
  color: var(--muted2);
  margin-bottom: 6px;
}
.metaCard__value{
  font-weight: 700;
  letter-spacing: .2px;
}
.metaCard__sub{
  display:block;
  margin-top: 6px;
  font-size: .78rem;
  color: var(--muted2);
}

.hero__media{ position:relative; }
.mediaCard{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.mediaCard__top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.mediaBadge{
  display:inline-flex;
  align-items:center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size:.78rem;
  color: rgba(255,245,210,.92);
  background: rgba(212,175,55,.14);
  border: 1px solid rgba(212,175,55,.22);
}
.mediaBadge--sub{
  color: rgba(238,242,255,.78);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}
.mediaCard__art{
  padding: 16px;
}
.posterImg{
  width:100%;
  height:auto;
  display:block;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.02);
}
.posterFallback svg{ width:100%; height:auto; display:block; }
.mediaCard__bottom{
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.mediaCard__mini{
  display:flex;
  gap:12px;
  align-items:center;
}
.miniLogoImg{
  width:44px; height:44px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.02);
}
.miniTitle{ font-weight: 800; }
.miniSub{ color: var(--muted2); font-size:.86rem; }

.hero__glow{
  position:absolute;
  inset: -180px -180px auto auto;
  width: 520px; height:520px;
  background: radial-gradient(circle at 30% 30%, rgba(212,175,55,.25), transparent 60%);
  filter: blur(12px);
  opacity:.85;
  pointer-events:none;
}
.hero__divider{
  position:absolute;
  left:0; right:0; bottom:-1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.45), rgba(255,255,255,.10), transparent);
  opacity:.9;
}

/* Cards / layout */
.card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
  padding: 18px;
}
.card__icon{
  width:40px; height:40px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.20);
  color: rgba(255,245,210,.95);
  margin-bottom: 10px;
}
.card__icon svg{ width:22px; height:22px; }

.aboutGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.card h3{
  margin: 0 0 8px;
  font-size: 1.05rem;
  letter-spacing:.1px;
}
.muted{ color: var(--muted); }
.small{ font-size: .88rem; }
.req{ color: var(--gold2); font-weight:700; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(238,242,255,.92);
  font-weight: 700;
  letter-spacing:.1px;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 14px 34px rgba(0,0,0,.30); }
.btn:active{ transform: translateY(0px); }

.btn--primary{
  background: linear-gradient(180deg, rgba(74,136,255,.40), rgba(74,136,255,.18));
  border-color: rgba(74,136,255,.40);
}
.btn--gold{
  background: linear-gradient(180deg, rgba(212,175,55,.42), rgba(212,175,55,.18));
  border-color: rgba(212,175,55,.42);
  color: rgba(255,245,210,.98);
}
.btn--ghost{ background: rgba(255,255,255,.03); }

/* Schedule */
.scheduleGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.scheduleDay__header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  margin-bottom: 12px;
}
.scheduleDay__header h3{ margin:0 0 4px; font-size:1.15rem; }
.badge{
  display:inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size:.78rem;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: rgba(238,242,255,.82);
}
.badge--gold{
  border-color: rgba(212,175,55,.30);
  background: rgba(212,175,55,.14);
  color: rgba(255,245,210,.95);
}
.badge--soft{
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}

.timeline{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.timeline__item{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}
.timeline__time{
  color: rgba(255,245,210,.92);
  font-weight: 800;
  font-size: .90rem;
}
.timeline__event{
  color: rgba(238,242,255,.88);
}

/* Tabs / Forms */
.tabs{ padding:0; overflow:hidden; }
.tabs__bar{
  display:flex;
  gap: 6px;
  padding: 10px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
}
.tab{
  flex:1;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(238,242,255,.80);
  padding: 12px 12px;
  font-weight: 900;
  cursor:pointer;
  transition: background .18s ease, transform .18s ease, border-color .18s ease, color .18s ease;
}
.tab:hover{ transform: translateY(-1px); }
.tab.is-active{
  background: rgba(212,175,55,.14);
  border-color: rgba(212,175,55,.28);
  color: rgba(255,245,210,.96);
}

.tabs__panel{ padding: 18px; display:none; }
.tabs__panel.is-active{ display:block; }

.panelHeader{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.panelHeader h3{
  margin:0 0 6px;
  font-size: 1.2rem;
}
.panelHeader__note{
  display:flex;
  gap: 8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.notePill{
  display:inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(238,242,255,.78);
  font-size:.78rem;
}
.notePill--gold{
  border-color: rgba(212,175,55,.30);
  background: rgba(212,175,55,.12);
  color: rgba(255,245,210,.95);
}

.form{ margin-top: 12px; }
.formGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.field{ display:flex; flex-direction:column; gap: 8px; }
.field--full{ grid-column: 1 / -1; }

label, legend{
  font-weight: 800;
  letter-spacing: .1px;
  font-size: .92rem;
}
input, select, textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(7,14,29,.35);
  color: rgba(238,242,255,.92);
  padding: 11px 12px;
  font-size: .95rem;
  outline:none;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
input::placeholder, textarea::placeholder{ color: rgba(238,242,255,.45); }
input:focus, select:focus, textarea:focus{
  border-color: rgba(212,175,55,.35);
  box-shadow: var(--focus);
}
select option{ color:#0A1020; }

fieldset{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255,255,255,.02);
}
legend{ padding:0 6px; }

.radioRow{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 6px;
}
.radio{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  cursor:pointer;
}
.radio input{ width:auto; }

.checkGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  margin-top: 8px;
}
.check{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  cursor:pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.check:hover{ transform: translateY(-1px); border-color: rgba(212,175,55,.22); }
.check input{ margin-top: 2px; width:auto; }

.hint{
  min-height: 16px;
  font-size: .86rem;
  color: rgba(255,160,160,.95);
}
.is-hidden{ display:none !important; }

.formActions{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.formToast{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(212,175,55,.28);
  background: rgba(212,175,55,.12);
  color: rgba(255,245,210,.95);
  font-weight: 900;
}

/* Callout */
.callout{
  margin-top: 16px;
  display:flex;
  gap: 14px;
  align-items:flex-start;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(212,175,55,.22);
  background: rgba(212,175,55,.08);
}
.callout__icon{
  width:44px; height:44px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(212,175,55,.14);
  border: 1px solid rgba(212,175,55,.26);
  color: rgba(255,245,210,.95);
}
.callout__icon svg{ width:22px; height:22px; }

/* Delegate guide */
.guide{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  padding: 18px;
}
.guide__content h2{
  font-family: var(--serif);
  margin: 2px 0 8px;
  font-size: 2rem;
}
.guide__actions{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  margin-top: 14px;
}
.guide__visual{
  position:relative;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(220px 220px at 20% 25%, rgba(212,175,55,.18), transparent 55%),
    radial-gradient(300px 240px at 80% 30%, rgba(74,136,255,.20), transparent 60%),
    rgba(255,255,255,.03);
  overflow:hidden;
  min-height: 220px;
}
.guide__seal{
  position:absolute;
  inset: 20px 20px auto auto;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,.35);
  background: rgba(7,14,29,.30);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap: 6px;
  box-shadow: var(--shadow2);
}
.sealTop{ font-weight: 900; letter-spacing:.16em; font-size:.84rem; color: rgba(255,245,210,.92); }
.sealMid{ font-family: var(--serif); font-weight: 700; font-size: 1.06rem; }
.sealBottom{ font-size: .86rem; color: var(--muted); }
.guide__lines{
  position:absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 1px, transparent 1px 14px);
  opacity:.20;
  pointer-events:none;
}

/* Payment */
.payGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.cardHeader{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
}
.priceMini{
  margin: 10px 0 0;
  color: rgba(238,242,255,.78);
  font-size: .92rem;
}
.priceMini strong{ color: rgba(255,245,210,.95); }

.bankBox{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  margin-top: 14px;
  padding: 12px;
  border-radius: 16px;
  border: 1px dashed rgba(255,255,255,.18);
  background: rgba(255,255,255,.02);
}
.bankBox__icon{
  width:40px; height:40px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(238,242,255,.88);
}
.bankBox__icon svg{ width:20px; height:20px; }
.bankBox__title{ font-weight: 900; margin-bottom: 2px; }

.teamHeroFull{
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
}
.teamHeroFull {
  margin-bottom: 24px; /* controls space between image and cards */
}


.teamGroupFullImg{
  width: 100%;
  height: 500px;       /* Control visual height here */
  object-fit: cover;   /* Makes it fill properly */
  display: block;
}

.teamHero__copy h3{ margin:0 0 8px; font-size: 1.25rem; }

.teamGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.member h4{
  margin:0 0 6px;
  font-size: 1.02rem;
  letter-spacing:.1px;
}

/* Footer */
.footer{
  padding: 46px 0 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(7,14,29,.35);
}
.footer__grid{ display:grid; gap: 18px; }
.footer__brand{ display:flex; gap: 12px; align-items:center; }
.footer__logo{
  width:44px; height:44px;
  border-radius: 16px;
  background: rgba(212,175,55,.14);
  border: 1px solid rgba(255,255,255,.10);
}
.footer__title{
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.15rem;
}
.footer__cols{
  display:grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 14px;
}
.footer__col h4{ margin: 0 0 8px; font-size: 1rem; }
.footer__links{ display:flex; flex-direction:column; gap: 8px; }
.footer__links a{
  color: rgba(238,242,255,.82);
  padding: 6px 8px;
  border-radius: 12px;
  width: fit-content;
}
.footer__links a:hover{ background: rgba(255,255,255,.06); }

.social{ display:flex; gap: 10px; flex-wrap:wrap; }
.social__btn{
  width: 44px; height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  display:grid; place-items:center;
  color: rgba(238,242,255,.86);
  transition: transform .18s ease, background .18s ease;
}
.social__btn svg{ width:18px; height:18px; }
.social__btn:hover{ transform: translateY(-1px); background: rgba(212,175,55,.10); }

.footer__bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.backTop{
  color: rgba(255,245,210,.95);
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,.22);
  background: rgba(212,175,55,.10);
}

/* Scroll reveal */
.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{ opacity:1; transform: translateY(0); }

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__meta{ grid-template-columns: 1fr; }
  .aboutGrid{ grid-template-columns: 1fr; }
  .scheduleGrid{ grid-template-columns: 1fr; }
  .guide{ grid-template-columns: 1fr; }
  .payGrid{ grid-template-columns: 1fr; }
  .teamHero{ grid-template-columns: 1fr; }
  .teamGrid{ grid-template-columns: 1fr; }
  .footer__cols{ grid-template-columns: 1fr; }
}

@media (max-width: 860px){
  .nav__toggle{ display:inline-flex; }
  .nav__links{
    position:absolute;
    top: 64px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: min(var(--max), calc(100% - 24px));
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap: 6px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(7,14,29,.78);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
  }
  .nav__links.is-open{ display:flex; }
  .nav__cta{ margin: 6px 0 0; justify-content:stretch; }
  .nav__cta .btn{ width:100%; }
}

@media (max-width: 680px){
  .formGrid{ grid-template-columns: 1fr; }
  .checkGrid{ grid-template-columns: 1fr; }
  .timeline__item{ grid-template-columns: 1fr; }
  .timeline__time{ font-size:.88rem; }
}
