
:root{
  /* Palette (from your reference image) */
  --c1:#021373;  /* Dark Imperial Blue */
  --c2:#020F59;  /* Oxford Blue */
  --c3:#010B40;  /* Cetacean Blue */
  --c4:#010626;  /* Rich Black */
  --a:#8491D9;   /* Vista Blue */

  --ice: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --stroke: rgba(132,145,217,.20);
  --card: rgba(255,255,255,.05);
  --shadow: 0 18px 60px rgba(0,0,0,.55);

  --radius: 22px;      /* bubbly, but disciplined */
  --radius2: 28px;
  --container: 1160px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--ice);
  background:
    radial-gradient(900px 520px at 15% 12%, rgba(132,145,217,.22), transparent 60%),
    radial-gradient(800px 460px at 85% 18%, rgba(132,145,217,.14), transparent 62%),
    linear-gradient(180deg, var(--c1), var(--c4));
  overflow-x:hidden;
}

/* subtle “law firm” texture + cyber grid */
body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(to right, rgba(132,145,217,.09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(132,145,217,.09) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 18%, rgba(0,0,0,.95), rgba(0,0,0,.30) 58%, transparent 82%);
  opacity:.55;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }

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

.header{
  position: sticky;
  top:0;
  z-index:50;
  background: rgba(1,6,38,.62);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(132,145,217,.18);
}
.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
}
.mark{
  width:44px;
  height:44px;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.08);
  display:grid;
  place-items:center;
  overflow:hidden;
  flex: 0 0 auto;
}
.brand-title{
  display:flex;
  flex-direction:column;
  min-width:0;
}
.brand-title strong{
  letter-spacing:.6px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14px;
}
.brand-title span{
  color: rgba(255,255,255,.62);
  font-size: 12px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.nav-links{
  display:flex;
  gap: 10px;
  align-items:center;
}
.nav-links a{
  padding: 9px 12px;
  border-radius: 999px;
  border:1px solid rgba(132,145,217,.18);
  background: rgba(255,255,255,.04);
  font-size: 13px;
}
.nav-links a.active{
  border-color: rgba(132,145,217,.40);
  background: rgba(132,145,217,.14);
}

.nav-cta{
  display:flex;
  gap: 10px;
  align-items:center;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  border:1px solid rgba(132,145,217,.22);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.92);
  font-weight: 650;
  font-size: 13px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 14px 40px rgba(0,0,0,.35); }
.btn.primary{
  background: linear-gradient(135deg, rgba(132,145,217,.98), rgba(2,19,115,.68));
  border-color: rgba(132,145,217,.55);
  box-shadow: 0 16px 44px rgba(132,145,217,.14);
}
.btn.ghost{
  background: transparent;
  border-color: rgba(132,145,217,.30);
}

.menu-btn{ display:none; }
.drawer{ display:none; }

.hero{
  padding: 44px 0 28px;
  position:relative;
}
.hero:after{
  content:"";
  position:absolute;
  inset:-120px -40px auto -40px;
  height: 340px;
  background:
    radial-gradient(620px 240px at 18% 20%, rgba(132,145,217,.22), transparent 62%),
    radial-gradient(520px 220px at 82% 35%, rgba(132,145,217,.12), transparent 62%);
  pointer-events:none;
  filter: blur(1px);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items:start;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border:1px solid rgba(132,145,217,.18);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.78);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.dot{
  width:9px; height:9px; border-radius:50%;
  background: var(--a);
  box-shadow: 0 0 18px rgba(132,145,217,.45);
}
h1{
  margin: 14px 0 12px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -.6px;
}
.lead{
  color: rgba(255,255,255,.74);
  font-size: 15px;
  line-height: 1.8;
  max-width: 62ch;
}
.trust{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 9px 12px;
  border-radius: 14px;
  border:1px solid rgba(132,145,217,.16);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.78);
  font-size: 12px;
}
.card{
  border-radius: var(--radius2);
  border:1px solid rgba(132,145,217,.20);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.card:before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(135deg, rgba(132,145,217,.35), rgba(132,145,217,.12), transparent);
  opacity:.35;
  filter: blur(18px);
  pointer-events:none;
}
.card-inner{ position:relative; padding: 18px; }
.portrait{
  border-radius: var(--radius2);
  border:1px solid rgba(132,145,217,.20);
  overflow:hidden;
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.portrait img{ width:100%; height:auto; }

.section{
  padding: 18px 0 30px;
}
.section-title{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
}
.section-title h2{
  margin:0;
  font-size: 22px;
  letter-spacing: .2px;
}
.hr{
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(132,145,217,.22), transparent);
  margin: 16px 0;
}
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.panel{
  border-radius: var(--radius);
  border:1px solid rgba(132,145,217,.18);
  background: rgba(255,255,255,.03);
  padding: 16px;
}
.panel h3{ margin:0 0 8px; font-size: 16px; }
.small{ color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.7; }

.marquee{
  border-top: 1px solid rgba(132,145,217,.16);
  border-bottom: 1px solid rgba(132,145,217,.16);
  background: rgba(255,255,255,.02);
}
.marquee-wrap{ overflow:hidden; padding: 10px 0; }
.track{
  display:flex;
  gap: 12px;
  white-space:nowrap;
  will-change: transform;
  animation: slide 9s linear infinite;
}
.marquee:hover .track{ animation-play-state: paused; }
@keyframes slide{ from{ transform: translateX(0);} to{ transform: translateX(-50%);} }
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 9px 12px;
  border-radius: 999px;
  border:1px solid rgba(132,145,217,.18);
  background: rgba(0,0,0,.18);
  font-size: 13px;
  color: rgba(255,255,255,.86);
}
.spark{
  width:10px; height:10px; border-radius:50%;
  background: linear-gradient(135deg, rgba(132,145,217,1), rgba(255,255,255,.75));
  box-shadow: 0 0 18px rgba(132,145,217,.35);
}

.footer{
  padding: 24px 0 28px;
  border-top: 1px solid rgba(132,145,217,.14);
  background: rgba(1,6,38,.45);
}
.footer .small{ color: rgba(255,255,255,.64); }

/* Forms */
label{ display:block; margin: 10px 0 6px; color: rgba(255,255,255,.80); font-size: 13px; }
input, textarea, select{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid rgba(132,145,217,.22);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.92);
  outline:none;
}
textarea{ min-height: 110px; resize: vertical; }
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap: 12px; }
.checks{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.check{ display:flex; align-items:center; gap:10px; padding: 10px 12px; border-radius: 14px; border:1px solid rgba(132,145,217,.16); background: rgba(255,255,255,.02); }
.check input{ width:auto; }

/* Responsive */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .nav-links{ display:none; }
  .nav-cta{ display:none; }
  .menu-btn{
    display:inline-flex;
    padding: 10px 12px;
    border-radius: 999px;
    border:1px solid rgba(132,145,217,.20);
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.9);
  }
  .drawer{
    display:none;
    padding: 10px 0 16px;
  }
  .drawer.open{ display:block; }
  .drawer a{ display:block; padding: 12px 14px; border-radius: 16px; border:1px solid rgba(132,145,217,.16); background: rgba(255,255,255,.03); margin-top: 10px;}
  .form-grid{ grid-template-columns: 1fr; }
  .checks{ grid-template-columns: 1fr; }
}


/* ==== Footer socials v2 ==== */
.social{
  width: 38px;
  height: 38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  border:1px solid rgba(132,145,217,.22);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.82);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.social:hover{
  transform: translateY(-1px);
  background: rgba(132,145,217,.14);
  color: rgba(255,255,255,.92);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}

/* fade the blue grid/shadow overlay slightly */
body:before{
  opacity: .38 !important;
  mask-image: radial-gradient(circle at 50% 20%, rgba(0,0,0,.90), rgba(0,0,0,.18) 62%, transparent 84%) !important;
}


/* event-flyer-standardize */
.panel .portrait img {
  max-height: 700px;
  width: auto;
  margin: 0 auto;
  display: block;
}


/* event-flyer-uniform */
.panel .portrait {
  display: flex;
  justify-content: center;
  align-items: center;
}

.panel .portrait img {
  height: 650px;
  width: auto;
  object-fit: contain;
}


/* events-bubbly-v9 */
body.events-page .grid3{ gap: 16px; }
body.events-page .panel{
  border-radius: 30px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(132,145,217,.22);
  box-shadow: 0 18px 60px rgba(0,0,0,.42);
  position: relative;
  overflow: hidden;
}
body.events-page .panel:before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(520px 220px at 20% 15%, rgba(132,145,217,.22), transparent 58%),
              radial-gradient(520px 220px at 90% 30%, rgba(132,145,217,.14), transparent 60%);
  opacity:.55;
  pointer-events:none;
}
body.events-page .panel > *{ position:relative; }

body.events-page .flyer-frame{
  width: 100%;
  height: 520px;               /* consistent alignment */
  border-radius: 26px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(132,145,217,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

body.events-page .flyer-frame img{
  width: 100%;
  height: 100%;
  object-fit: contain;          /* keep whole flyer visible */
  display:block;
}

/* tighten portrait wrapper */
body.events-page .panel .portrait{
  margin-top: 10px;
}

/* mobile */
@media (max-width: 920px){
  body.events-page .flyer-frame{ height: 420px; }
}


/* events-alignment-fix-v11 */
body.events-page .flyer-frame{
  height: 520px;
  display: flex;
  align-items: flex-start;   /* TOP align instead of center */
  justify-content: center;
  padding-top: 10px;
}

body.events-page .flyer-frame img{
  max-height: 500px;
  width: auto;
  object-fit: contain;
}

/* Make all panels start content at same vertical rhythm */
body.events-page .panel{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}



/* ps-showcase-v13 (home: moments strip) */
.ps-showcase{
  margin-top: 16px;
}
.ps-showcase-track{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ps-shot{
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(132,145,217,.22);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 55px rgba(0,0,0,.38);
  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .22s ease, border-color .22s ease;
}
.ps-shot img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(1.02);
}
.ps-shot:hover{
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(0,0,0,.46);
  border-color: rgba(132,145,217,.34);
}
@media (max-width: 920px){
  .ps-showcase-track{
    grid-template-columns: 1fr;
  }
  .ps-shot img{
    height: 220px;
  }
}


/* value-shot-v14 (home: encounter/impartation/community images) */
.value-shot{
  margin: 12px 0 10px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(132,145,217,.22);
  background: rgba(255,255,255,.04);
  box-shadow: 0 14px 44px rgba(0,0,0,.35);
}
.value-shot img{
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
@media (max-width: 920px){
  .value-shot img{ height: 200px; }
}


.btn.disabled{
  opacity:.62;
  pointer-events:none;
  cursor:not-allowed;
  background: rgba(255,255,255,.02);
}

/* mobile-redesign-pass-v20 */
@media (max-width: 920px){
  .hero-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-grid > :first-child{
    order: 1;
  }

  .hero-grid > :last-child{
    order: 2;
  }

  .nav-links{ display:none; }
  .nav-cta{ display:none; }

  .menu-btn{
    display:inline-flex;
    padding: 10px 12px;
    border-radius: 999px;
    border:1px solid rgba(132,145,217,.20);
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.9);
  }

  .drawer{
    display:none;
    padding: 10px 0 16px;
  }

  .drawer.open{ display:block; }

  .drawer a{
    display:block;
    padding: 12px 14px;
    border-radius: 16px;
    border:1px solid rgba(132,145,217,.16);
    background: rgba(255,255,255,.03);
    margin-top: 10px;
  }

  .section-title{
    align-items:flex-start;
  }

  .form-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checks{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.events-page .grid3{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  body.events-page .grid3 > :last-child{
    grid-column: 1 / -1;
  }

  .ps-showcase-track{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .ps-showcase-track > :last-child{
    grid-column: 1 / -1;
  }

  .value-shot img{
    height: 180px;
  }

  body.events-page .flyer-frame{
    height: 420px;
  }

  body.events-page .flyer-frame img{
    max-height: 395px;
  }
}

@media (max-width: 768px){
  .container{
    width: min(var(--container), calc(100% - 24px));
  }

  .header{
    position: sticky;
  }

  .navbar{
    gap: 10px;
    padding: 12px 0;
  }

  .hero{
    padding: 28px 0 18px;
  }

  h1{
    font-size: clamp(30px, 8vw, 42px);
  }

  .lead{
    font-size: 14px;
    line-height: 1.7;
  }

  .section{
    padding: 16px 0 24px;
  }

  .card-inner,
  .panel{
    padding: 14px;
  }

  .btn{
    padding: 10px 12px;
    font-size: 12px;
  }

  .kicker,
  .badge,
  .pill{
    font-size: 11px;
  }

  .brand-title strong{
    font-size: 12px;
  }

  .brand-title span{
    font-size: 11px;
  }

  .ps-shot img{
    height: 190px;
  }

  body.events-page .flyer-frame{
    height: 340px;
    padding-top: 8px;
  }

  body.events-page .flyer-frame img{
    max-height: 320px;
  }
}

@media (max-width: 560px){
  .hero{
    padding: 24px 0 18px;
  }

  .trust{
    gap: 8px;
  }

  .badge{
    width: calc(50% - 4px);
    justify-content:center;
  }

  .form-grid,
  .checks{
    grid-template-columns: 1fr;
  }

  body.events-page .grid3{
    grid-template-columns: 1fr;
  }

  .ps-showcase-track{
    grid-template-columns: 1fr;
  }

  .value-shot img{
    height: 160px;
  }

  .ps-shot img{
    height: 180px;
  }

  body.events-page .flyer-frame{
    height: 285px;
  }

  body.events-page .flyer-frame img{
    max-height: 265px;
  }
}

@media (max-width: 420px){
  .container{
    width: min(var(--container), calc(100% - 18px));
  }

  .badge{
    width: 100%;
  }

  .card-inner,
  .panel{
    padding: 12px;
  }

  body.events-page .flyer-frame{
    height: 250px;
  }

  body.events-page .flyer-frame img{
    max-height: 232px;
  }
}



/* events-feature-slider-v27 */
.events-stage{
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0,1fr) 54px;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
}

.events-slider-wrap{
  overflow: hidden;
}

.events-slider{
  display: flex;
  transition: transform .45s ease;
  will-change: transform;
}

.event-slide{
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr);
  gap: 22px;
  align-items: stretch;
}

.event-slide-media{
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(132,145,217,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  min-height: 620px;
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
}

.event-slide-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-slide-copy{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(132,145,217,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

.event-chip{
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(132,145,217,.24);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.event-slide-copy h3{
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.06;
}

.event-slide-copy h3 span{
  display: block;
  font-size: .52em;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 600;
}

.event-date{
  margin: 0;
  font-size: 16px;
  color: rgba(255,255,255,.86);
  font-weight: 700;
}

.event-text{
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 48ch;
}

.event-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.events-arrow{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(132,145,217,.24);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  color: rgba(255,255,255,.94);
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}

.events-arrow:hover{
  transform: translateY(-1px);
}

.events-dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.events-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.25);
  cursor: pointer;
}

.events-dot.active{
  background: rgba(255,255,255,.92);
  box-shadow: 0 0 0 4px rgba(255,255,255,.08);
}

@media (max-width: 1100px){
  .event-slide{
    grid-template-columns: 1fr;
  }

  .event-slide-media{
    min-height: 520px;
  }

  .event-slide-copy{
    padding: 24px;
  }
}

@media (max-width: 768px){
  .events-stage{
    grid-template-columns: 42px minmax(0,1fr) 42px;
    gap: 10px;
  }

  .event-slide-media{
    min-height: 420px;
  }

  .event-slide-copy{
    padding: 18px;
    gap: 12px;
  }

  .event-slide-copy h3{
    font-size: 26px;
  }

  .event-date{
    font-size: 14px;
  }

  .event-text{
    font-size: 14px;
    line-height: 1.7;
  }

  .events-arrow{
    width: 42px;
    height: 42px;
    font-size: 22px;
  }
}

@media (max-width: 520px){
  .events-stage{
    grid-template-columns: 1fr;
  }

  .events-arrow{
    position: absolute;
    top: 180px;
    z-index: 4;
    background: rgba(1,6,38,.78);
    backdrop-filter: blur(8px);
  }

  .events-arrow.left{ left: 10px; }
  .events-arrow.right{ right: 10px; }

  .event-slide-media{
    min-height: 360px;
    border-radius: 24px;
  }

  .event-slide-copy{
    border-radius: 22px;
  }

  .event-actions .btn{
    width: 100%;
    justify-content: center;
  }
}


/* v32 theme fixes */
.drawer-cta{
  display:block;
}

@media (max-width: 920px){
  .drawer-cta{
    display:block;
    padding: 12px 14px;
    border-radius: 999px !important;
    border: 1px solid rgba(132,145,217,.16) !important;
    background: rgba(255,255,255,.03) !important;
    color: rgba(255,255,255,.92) !important;
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
    box-shadow: none !important;
  }

  .marquee-track,
  .ticker-track,
  .scrolling-words,
  .sliding-words{
    animation-duration: 14s !important;
  }
}

@media (max-width: 768px){
  .marquee-track,
  .ticker-track,
  .scrolling-words,
  .sliding-words{
    animation-duration: 11s !important;
  }
}



/* v34 submit button fix */
.flat-submit{
  border-radius: 12px !important;
  padding: 12px 18px !important;
  width: 100% !important;
  display: block !important;
}


/* v38 desktop invite only */
@media (max-width: 920px){
  .desktop-invite{
    display:none !important;
  }
}


/* v39 boutique-masculine redesign */
:root{
  --c1:#0c1130;
  --c2:#121a48;
  --c3:#081125;
  --c4:#050812;
  --a:#c3a26a;
  --accent2:#3fc6b8;
  --accent3:#7b61ff;
  --ice: rgba(255,249,239,.96);
  --muted: rgba(255,245,232,.78);
  --stroke: rgba(195,162,106,.18);
  --card: rgba(255,255,255,.055);
  --shadow: 0 24px 70px rgba(0,0,0,.48);
  --radius: 24px;
  --radius2: 34px;
}

body{
  background:
    radial-gradient(900px 520px at 12% 10%, rgba(63,198,184,.16), transparent 58%),
    radial-gradient(780px 500px at 88% 12%, rgba(195,162,106,.18), transparent 58%),
    radial-gradient(700px 460px at 50% 88%, rgba(123,97,255,.13), transparent 60%),
    linear-gradient(180deg, #12193f 0%, #0a102a 42%, #050812 100%);
}

body:before{
  background-image:
    linear-gradient(to right, rgba(195,162,106,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(63,198,184,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .42;
}

body:after{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events:none;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.06), transparent 20%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,.03), transparent 18%);
  mix-blend-mode: screen;
  opacity:.45;
}

.header{
  background: rgba(5,8,18,.72);
  border-bottom: 1px solid rgba(195,162,106,.18);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.navbar{
  padding: 16px 0;
  gap: 18px;
}

.brand-title strong{
  letter-spacing: .04em;
  text-transform: uppercase;
}

.brand-title span{
  color: rgba(255,240,225,.68);
}

.mark{
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.20), rgba(255,255,255,.06)),
    linear-gradient(135deg, rgba(63,198,184,.16), rgba(195,162,106,.14));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 12px 28px rgba(0,0,0,.22);
  border: 1px solid rgba(195,162,106,.18);
}

.nav-links a,
.drawer a{
  position: relative;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: .25s ease;
}

.nav-links a{
  padding: 10px 16px;
}

.nav-links a:hover,
.nav-links a.active{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border-color: rgba(195,162,106,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.btn{
  border-radius: 999px;
  border: 1px solid rgba(195,162,106,.20);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 12px 24px rgba(0,0,0,.18);
  letter-spacing: .01em;
}

.btn.primary{
  background:
    linear-gradient(135deg, rgba(195,162,106,.96), rgba(154,117,56,.94));
  border-color: rgba(230,198,136,.30);
  color: #120d05;
  font-weight: 800;
}

.btn.primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(154,117,56,.26);
}

.btn.ghost,
.desktop-invite{
  background:
    linear-gradient(135deg, rgba(63,198,184,.16), rgba(123,97,255,.10)),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-color: rgba(63,198,184,.24);
  color: var(--ice);
}

.desktop-invite{
  white-space: nowrap;
}

.menu-btn{
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(195,162,106,.18);
}

.drawer{
  border-top: 1px solid rgba(195,162,106,.14);
}

.drawer a{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(195,162,106,.12);
}

.marquee{
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-top: 1px solid rgba(195,162,106,.12);
  border-bottom: 1px solid rgba(195,162,106,.12);
}

.marquee .pill{
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(195,162,106,.16);
  color: rgba(255,246,235,.88);
}

.spark,
.dot{
  background: linear-gradient(135deg, var(--a), var(--accent2));
  box-shadow: 0 0 22px rgba(195,162,106,.28);
}

.hero{
  padding-top: 42px;
}

.hero-grid{
  align-items: center;
  gap: 28px;
}

.hero-grid > div:first-child{
  position: relative;
  z-index: 2;
}

.kicker{
  width: fit-content;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(195,162,106,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  color: rgba(255,245,232,.76);
}

h1{
  font-size: clamp(48px, 6.2vw, 78px);
  line-height: .98;
  letter-spacing: -.04em;
  margin-top: 18px;
  margin-bottom: 16px;
  max-width: 11ch;
  text-shadow: 0 6px 24px rgba(0,0,0,.18);
}

.lead{
  max-width: 44rem;
  font-size: 18px;
  line-height: 1.85;
}

.badge{
  border-radius: 999px;
  border: 1px solid rgba(195,162,106,.16);
  background:
    linear-gradient(135deg, rgba(63,198,184,.10), rgba(123,97,255,.07)),
    rgba(255,255,255,.03);
  color: rgba(255,245,232,.82);
}

.hr{
  border-color: rgba(195,162,106,.14);
}

.card,
.panel{
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(195,162,106,.15);
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
}

.card:before,
.panel:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(400px 160px at 0% 0%, rgba(63,198,184,.09), transparent 55%),
    radial-gradient(320px 180px at 100% 100%, rgba(195,162,106,.10), transparent 58%);
  pointer-events:none;
}

.card-inner{
  position: relative;
  z-index: 1;
  padding: 24px;
}

.section-title h2,
h2{
  letter-spacing: -.03em;
}

.portrait,
.value-shot,
.event-slide-media{
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(195,162,106,.16);
  box-shadow: 0 18px 42px rgba(0,0,0,.26);
}

.portrait img,
.value-shot img{
  transform: scale(1.01);
}

input,
select,
textarea{
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(195,162,106,.18);
  background: rgba(255,255,255,.04);
  color: var(--ice);
  padding: 14px 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

label{
  display: block;
  margin-bottom: 8px;
  color: rgba(255,245,232,.82);
  font-size: 14px;
  font-weight: 700;
}

input::placeholder,
textarea::placeholder{
  color: rgba(255,245,232,.42);
}

input:focus,
select:focus,
textarea:focus{
  outline: none;
  border-color: rgba(63,198,184,.44);
  box-shadow: 0 0 0 4px rgba(63,198,184,.08);
}

form .btn.primary,
.flat-submit{
  width: 100%;
  border-radius: 18px !important;
  justify-content: center;
  min-height: 52px;
  font-weight: 800;
}

.events-stage{
  margin-top: 24px;
}

.event-slide-copy{
  border-radius: 30px;
  border: 1px solid rgba(195,162,106,.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}

.event-chip{
  color: rgba(255,245,232,.74);
  border-color: rgba(63,198,184,.22);
  background: rgba(255,255,255,.04);
}

.events-arrow{
  border: 1px solid rgba(195,162,106,.18);
  background:
    linear-gradient(135deg, rgba(63,198,184,.14), rgba(123,97,255,.10)),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
}

.events-dot.active{
  background: linear-gradient(135deg, var(--a), var(--accent2));
}

.footer{
  margin-top: 40px;
  padding: 34px 0 38px;
  border-top: 1px solid rgba(195,162,106,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
}

.social{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(195,162,106,.16);
  background: rgba(255,255,255,.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.small{
  color: rgba(255,244,230,.70);
}

body.ps27{
  background:
    radial-gradient(800px 420px at 15% 12%, rgba(195,162,106,.20), transparent 56%),
    radial-gradient(720px 400px at 82% 18%, rgba(255,120,140,.18), transparent 58%),
    linear-gradient(180deg, #1f1020, #0b0810 58%, #05050a);
}

body.ps27:before{
  opacity: .28;
}

body.ps27 .btn.primary{
  background: linear-gradient(135deg, rgba(255,197,128,.96), rgba(224,142,110,.92));
  color:#18090d;
  border-color: rgba(255,216,167,.26);
}

body.ps27 .kicker,
body.ps27 .card,
body.ps27 .portrait{
  border-color: rgba(255,197,128,.20);
}

@media (min-width: 921px){
  .hero-grid{
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  }

  .nav-cta{
    display:flex;
    align-items:center;
    gap: 10px;
  }
}

@media (max-width: 920px){
  .nav-cta{
    display:none !important;
  }

  h1{
    font-size: clamp(40px, 11vw, 58px);
    max-width: 12ch;
  }
}

@media (max-width: 768px){
  .hero{
    padding-top: 22px;
  }

  .lead{
    font-size: 16px;
    line-height: 1.75;
  }

  .card-inner{
    padding: 18px;
  }

  .kicker{
    font-size: 10px;
    letter-spacing: .12em;
  }
}


/* v40 brighter blue refresh */
:root{
  --c1:#0b1f8f;
  --c2:#1026b3;
  --c3:#0a1a6a;
  --a:#4fa3ff;
}

body{
  background:
    radial-gradient(900px 520px at 15% 12%, rgba(79,163,255,.28), transparent 60%),
    radial-gradient(800px 460px at 85% 18%, rgba(79,163,255,.18), transparent 62%),
    linear-gradient(180deg, var(--c1), #020b40);
}

.btn.primary{
  background: linear-gradient(135deg, #4fa3ff, #2f6fff);
  color:white;
}

@media (max-width: 920px){
  .mobile-invite{
    display:block !important;
  }
}
