:root{
  --bg:#0b0b0c;
  --panel:#111113;
  --panel2:#141417;
  --text:#f2f2f4;
  --muted:#b8b8c2;
  --red:#d00000;
  --red2:#ff1f1f;
  --line:rgba(255,255,255,.08);
  --shadow:0 12px 30px rgba(0,0,0,.55);
  --radius:14px;
  --radius2:18px;
  --max:1120px;
}

*{ box-sizing:border-box; }

html,
body{
  margin:0;
  padding:0;
  overflow-x:hidden;
}

/* ===== BACKGROUND SYSTEM ===== */

body{
  color:var(--text);
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.5;
  background-color:#0b0b0c;
  padding-top:96px;
}

/* GLOBAL BACKGROUND LAYER */
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;

  background-image:url("/images/website-background.png");
  background-position:center center;
  background-repeat:no-repeat;
  background-size:cover;
}

/* MOBILE FIX */
@media (max-width: 768px){
  body{
    padding-top:82px;
  }

  body::before{
    background-position:center top;
    background-repeat:no-repeat;
    background-size:cover;
  }
}

img,
video,
svg{
  max-width:100%;
  height:auto;
}

h1,h2,h3,h4{
  font-family:Oswald, Inter, system-ui, sans-serif;
  letter-spacing:.02em;
  margin:0 0 .6rem 0;
}

p{ margin:.6rem 0; }
a{ color:inherit; }

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
}

.muted{ color:var(--muted); }

.hr{
  height:1px;
  background:var(--line);
  margin:24px 0;
}

/* Prevent decorative overlays from stealing clicks */
html::before,
html::after,
body::before,
body::after,
.hero::before,
.hero::after,
.page-hero::before,
.page-hero::after,
.gallery-hero::before,
.gallery-hero::after,
.hero-frame::before,
.hero-frame::after,
.poster::before,
.poster::after,
.poster-frame::before,
.poster-frame::after,
.about-hero::before,
.about-hero::after,
.about-frame::before,
.about-frame::after,
.overlay,
.bg-overlay,
.hero-overlay,
.shade,
.scrim{
  pointer-events:none !important;
}


/* =========================================
   HEADER / NAV — SINGLE SOURCE OF TRUTH
   ========================================= */

.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  width:100%;
  z-index:100000;
  background:linear-gradient(180deg, #0b0b0c 0%, #0f0f12 55%, #1a0000 100%);
  border-bottom:2px solid #d00000;
  box-shadow:
    0 10px 28px rgba(0,0,0,.7),
    0 0 25px rgba(208,0,0,.45),
    0 0 45px rgba(208,0,0,.25);
  transform:none !important;
  filter:none !important;
}

.site-header .container{
  max-width:var(--max);
  margin:0 auto;
  padding-left:18px;
  padding-right:18px;
}

.site-header .nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height:96px;
  position:relative;
}

.site-header .brand{
  display:flex !important;
  align-items:center !important;
  flex:0 0 auto;
  text-decoration:none;
  min-width:0;
  position:relative;
  z-index:100002;
}

.site-header .brand img,
.site-header .logo-header{
  display:block !important;
  width:auto !important;
  height:64px !important;
  max-width:none !important;
  object-fit:contain !important;
  visibility:visible !important;
  opacity:1 !important;
}

.site-header img{
  width:auto !important;
  height:auto !important;
}

.site-header .nav{
  display:flex;
  align-items:center;
  margin-left:auto;
  gap:18px;
  min-width:0;
  flex:1 1 auto;
  justify-content:flex-end;
}

.site-header .nav-links{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:nowrap;
  min-width:0;
}

.site-header .nav-link{
  display:inline-block;
  padding:10px 6px;
  text-decoration:none !important;
  white-space:nowrap;
}

.site-header .nav-link:hover{
  color:#ff1f1f;
  text-shadow:0 0 10px rgba(255,0,0,.4);
}

.site-header .nav-cta{
  display:flex;
  align-items:center;
  gap:12px;
  flex:0 0 auto;
  margin-left:10px;
}

.site-header .nav-toggle{
  display:none;
  background:transparent;
  border:0;
  padding:10px;
  border-radius:12px;
  cursor:pointer;
  position:relative;
  z-index:100003;
  pointer-events:auto;
}

.site-header .nav-toggle:hover{
  background:rgba(255,255,255,.06);
}

.site-header .nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  margin:5px 0;
  background:rgba(255,255,255,.86);
}

.nav-logo{
  height:60px;
  width:auto;
  display:block;
}

.brand-logo{
  height:44px;
  width:auto;
  display:block;
}

.brand-text{
  font-family:Oswald, Inter, sans-serif;
  font-weight:600;
  text-transform:uppercase;
  font-size:.9rem;
  color:rgba(242,242,244,.92);
  display:none;
}

/* Global buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.02em;
  border:1px solid transparent;
  cursor:pointer;
}

.btn-primary{
  background:linear-gradient(180deg, var(--red2), var(--red));
  box-shadow:0 10px 22px rgba(208,0,0,.26);
}

.btn-primary:hover{ filter:brightness(1.05); }

.btn-outline{
  background:transparent;
  border-color:rgba(255,255,255,.20);
  color:var(--text);
}

.btn-outline:hover{ background:rgba(255,255,255,.06); }

.btn-ghost{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.08);
}

.btn-ghost:hover{ background:rgba(255,255,255,.10); }

.btn-join{
  width:141.11px;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  line-height:1.1;
  padding:0;
  background:#000 !important;
  border:2px solid #ff1f1f !important;
  color:#ffffff !important;
  box-shadow:
    0 0 10px rgba(255,0,0,.35),
    inset 0 0 8px rgba(255,0,0,.15) !important;
  transition:all .25s ease;
}

.btn-join:hover{
  background:linear-gradient(180deg, #ff1f1f, #d00000) !important;
  color:#ffffff !important;
  box-shadow:
    0 0 18px rgba(255,0,0,.6),
    0 0 40px rgba(208,0,0,.5),
    inset 0 0 16px rgba(255,255,255,.15) !important;
  transform:translateY(-2px);
}

.btn-solid{
  background:#000 !important;
  border:2px solid #ff1f1f !important;
  color:#ffffff !important;
  box-shadow:
    0 0 12px rgba(255,0,0,.45),
    0 0 28px rgba(208,0,0,.35),
    inset 0 0 12px rgba(255,0,0,.25) !important;
  transition:all .25s ease !important;
}

.btn-solid:hover{
  background:linear-gradient(180deg, #ff1f1f, #d00000) !important;
  transform:translateY(-2px);
  box-shadow:
    0 0 18px rgba(255,0,0,.6),
    0 0 40px rgba(208,0,0,.5),
    inset 0 0 16px rgba(255,255,255,.15) !important;
}

.site-header .nav-cta .btn{
  border-radius:12px !important;
  padding:12px 18px !important;
  font-weight:700 !important;
  text-decoration:none !important;
}

/* Member badge */
.member-badge-pro{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.member-badge-number{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#f3f3f3;
  font-size:14px;
  font-weight:700;
  letter-spacing:.03em;
}

.member-badge-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border-radius:999px;
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  transition:all .2s ease;
}

.member-badge-dashboard{
  background:linear-gradient(180deg,#d4af37,#b89222);
  color:#111;
}

.member-badge-logout{
  background:rgba(255,255,255,.08);
  color:#fff;
  border:1px solid rgba(255,255,255,.14);
}

/* =========================================
   HERO
   ========================================= */

.hero{
  position:relative;
  overflow:hidden;
  padding:30px 18px 40px;
}

/* ONLY non-events pages get transparent hero */
body:not(.events-page) .hero{
  background:transparent !important;
}

.hero-frame{
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:48px;
  border-radius:22px;
  padding:34px;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
}

.hero-left,
.hero-right{
  position:relative;
  z-index:1;
}

.hero-left{
  text-align:center;
}

.hero-right{
  flex:0 0 56%;
  max-width:56%;
  display:flex;
  justify-content:center;
  align-items:center;
}

.hero-image{
  width:100%;
  max-width:520px;
  max-height:360px;
  height:auto;
  object-fit:contain;
  display:block;
  border-radius:14px;
  border:3px solid rgba(208,0,0,.80);
  box-shadow:
    0 18px 45px rgba(0,0,0,.65),
    0 0 0 6px rgba(0,0,0,.45);
}

.hero-logo{ margin-bottom:12px; }

.hero-logo img{
  width:clamp(420px, 58vw, 1000px);
  max-width:100%;
  height:auto;
  display:block;
  filter:
    drop-shadow(0 0 10px rgba(255,255,255,.25))
    drop-shadow(0 0 18px rgba(255,0,0,.22));
}

.hero-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.hero-inner h1{
  text-align:center;
  margin:15px 0 15px;
}

.hero-inner .sub{
  text-align:center;
  max-width:850px;
  margin:0 auto 22px;
}

.hero-inner .meta-row{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
}

/* Home page */
.page-home .hero-left{ text-align:center; }

.page-home .hero-actions{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  gap:14px !important;
  flex-wrap:wrap !important;
}

.page-home .hero-actions a{
  text-decoration:none !important;
}

.page-home .hero-actions .hero-join{
  width:auto !important;
  height:auto !important;
  padding:12px 22px !important;
  border-radius:12px !important;
  text-decoration:none !important;
  text-decoration-line:none !important;
  border-bottom:0 !important;
  background:linear-gradient(180deg, var(--red2), var(--red)) !important;
  border:1px solid transparent !important;
  box-shadow:0 10px 22px rgba(208,0,0,.26) !important;
}

.page-home .hero-actions .hero-join::before,
.page-home .hero-actions .hero-join::after{
  content:none !important;
  display:none !important;
}

.page-home .hero-actions .btn{
  border:2px solid #ff1f1f !important;
  background:rgba(208,0,0,0.10) !important;
  color:#ffffff !important;
  box-shadow:
    0 0 12px rgba(255,0,0,0.45),
    0 0 28px rgba(208,0,0,0.35),
    inset 0 0 12px rgba(255,0,0,0.25) !important;
  transition:all .25s ease;
}

.page-home .hero-actions .btn:hover{
  background:linear-gradient(180deg, #ff1f1f, #d00000) !important;
  box-shadow:
    0 0 18px rgba(255,0,0,0.6),
    0 0 40px rgba(208,0,0,0.5),
    inset 0 0 16px rgba(255,255,255,0.15) !important;
  transform:translateY(-2px);
}

.page-home .hero-frame{
  justify-content:space-between !important;
}

/* Gallery page hero */
.page-gallery .hero-frame{
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  border-radius:0 !important;
}

.gallery-logo-wrap{
  width:100%;
  display:grid;
  place-items:center;
  margin:0 auto 20px;
}

.gallery-logo{
  display:block;
  margin-left:auto;
  margin-right:auto;
  max-width:480px;
  width:100%;
  height:auto;
  filter:drop-shadow(0 14px 28px rgba(0,0,0,.6));
}

.gallery-hero,
.page-hero{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.gallery-hero{
  text-align:center;
}

.gallery-hero h1{
  text-align:center;
  margin:0 auto 18px;
}

.gallery-hero p{
  text-align:center;
  margin:0 auto 24px;
  max-width:800px;
}

.gallery-hero .badges,
.gallery-hero .hero-badges{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
}

.page-gallery .gallery-main{
  padding:20px 18px 60px;
}

.gallery-more{
  text-align:center;
  margin-top:40px;
}

.gallery-more .btn{
  padding:14px 28px;
  font-size:16px;
  font-weight:700;
  letter-spacing:.5px;
}

/* Classifications */
.class-logo-wrap{
  text-align:center;
  margin:20px 0 15px;
}

.class-logo{
  width:min(475px, 85vw);
  display:block;
  margin:0 auto;
  filter:drop-shadow(0 14px 28px rgba(0,0,0,.6));
}

.page-title{
  font-size:clamp(42px, 5vw, 68px);
  letter-spacing:2px;
  margin:10px auto 8px;
  text-align:center;
}

.classifications-page .page-sub{
  text-align:center !important;
  margin:0 auto 30px !important;
  max-width:750px;
}

.classifications-page .page-title{
  text-align:center !important;
}

.class-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin:12px 0 16px;
}

.class-gallery img{
  width:100%;
  height:120px;
  object-fit:cover;
  border-radius:6px;
  display:block;
  opacity:.95;
  border:2px solid;
  border-image:linear-gradient(145deg, #ffffff, #cfcfcf, #9e9e9e, #ffffff, #7a7a7a) 1;
  box-shadow:0 4px 10px rgba(0,0,0,0.4);
  transition:transform 0.2s ease, opacity 0.2s ease;
  cursor:zoom-in;
}

.class-gallery img:hover{
  transform:scale(1.04);
  opacity:1;
}

@media (min-width: 1024px){
  .classifications-grid .class-card{
    display:grid;
    grid-template-columns:1fr 380px;
    column-gap:24px;
    row-gap:0;
    align-items:start;
    border-right:1px solid rgba(255,31,31,.15);
    padding-right:20px;
  }

  .classifications-grid .class-card > .class-header{
    grid-column:1 / -1;
    grid-row:1;
    margin:0 0 6px 0;
  }

  .classifications-grid .class-card > .class-body{
    grid-column:1;
    grid-row:2;
    margin:0;
    padding:0;
  }

  .classifications-grid .class-card > .class-body > p:first-of-type{
    margin-top:0;
  }

  .classifications-grid .class-card > .class-gallery{
    grid-column:2;
    grid-row:2;
    margin:0;
    align-self:start;
  }

  .classifications-grid .class-gallery img{
    height:92px;
  }
}

/* =========================================
   ABOUT / EVOLUTION STRUCTURE
   ========================================= */

.about-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.about-logo{
  margin-bottom:24px;
}

.about-frame{
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  border-radius:0 !important;
}

.poster,
.poster-frame,
.poster-card,
.evo-frame{
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  border-radius:0 !important;
}

.poster-logo img{
  width:560px;
  max-width:95%;
  height:auto;
  display:block;
  filter:
    drop-shadow(0 0 10px rgba(255,255,255,.20))
    drop-shadow(0 0 18px rgba(255,0,0,.22));
}

.poster-h1{
  text-align:center;
  font-family:Oswald, Inter, sans-serif;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-weight:700;
  font-size:clamp(22px, 2.2vw, 34px);
  margin:10px 0 6px;
}

.poster-h2{
  text-align:center;
  font-family:Oswald, Inter, sans-serif;
  text-transform:uppercase;
  letter-spacing:.05em;
  font-weight:700;
  font-size:clamp(16px, 1.7vw, 24px);
  margin:0 0 8px;
  color:rgba(242,242,244,.90);
}

.poster-h2 .gold{ color:#d8b46a; }
.poster-h2 .red{ color:#ff1f1f; }

.poster-sub{
  text-align:center;
  font-family:Oswald, Inter, sans-serif;
  text-transform:uppercase;
  letter-spacing:.05em;
  font-weight:700;
  font-size:15px;
  color:rgba(242,242,244,.88);
  margin:0 0 14px;
}

.poster-rule{
  height:2px;
  background:linear-gradient(90deg, transparent, rgba(255,31,31,.85), transparent);
  margin:10px 0 12px;
}

.poster-rule.thin{
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
  margin:10px 0 16px;
}

.poster-intro{
  max-width:980px;
  margin-top:18px;
  text-align:center;
  color:rgba(242,242,244,.82);
  font-size:1.02rem;
  line-height:1.55;
}

.poster-intro strong{ color:rgba(242,242,244,.95); }
.poster-intro .gold{ color:#d8b46a; font-weight:700; }

.twocol{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:16px;
}

.twocol section{
  background:rgba(255,31,31,.04);
  border-radius:14px;
  padding:14px;
}

.col{
  border:1px solid rgba(255,31,31,.28);
  border-radius:16px;
  background:rgba(0,0,0,.30);
  padding:16px;
  box-shadow:0 12px 30px rgba(0,0,0,.40);
}

.col-title{
  font-family:Oswald, Inter, sans-serif;
  text-transform:uppercase;
  letter-spacing:.05em;
  font-weight:700;
  font-size:22px;
  margin:0 0 10px;
}

.col-title.gold{ color:#d8b46a; }
.col-title.red{ color:#ff1f1f; }

.img-frame{
  border:1px solid rgba(255,31,31,.35);
  border-radius:12px;
  overflow:hidden;
  background:rgba(0,0,0,.35);
  box-shadow:0 10px 24px rgba(0,0,0,.45);
  margin-bottom:12px;
}

.img-frame img{
  object-fit:cover;
  height:220px;
  width:100%;
}

.col p{
  margin:10px 0;
  color:rgba(242,242,244,.80);
}

.bullets{
  margin:10px 0 0;
  padding-left:18px;
  color:rgba(242,242,244,.78);
}

.bullets li{ margin:8px 0; }
.bullets li::marker{ color:#d8b46a; }

.unified{
  margin-top:18px;
  padding:18px 16px 16px;
  border-radius:16px;
  border:1px solid rgba(255,31,31,.22);
  background:rgba(0,0,0,.30);
  text-align:center;
}

.site-footer{
  margin-top:40px;
  padding-top:24px;
}

.unified-title{
  font-family:Oswald, Inter, sans-serif;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-weight:700;
  font-size:clamp(20px, 2vw, 30px);
  color:#d8b46a;
  margin:0 0 8px;
}

.unified p{
  margin:8px auto;
  max-width:920px;
  color:rgba(242,242,244,.80);
}

.checks{
  list-style:none;
  padding:0;
  margin:12px auto 6px;
  max-width:760px;
  text-align:left;
  display:grid;
  gap:10px;
}

.checks li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:rgba(242,242,244,.82);
}

.checks li::before{
  content:"✓";
  color:#ff1f1f;
  font-weight:900;
  margin-top:1px;
}

/* IPSA clarification */
.ipsa-clarification{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:12px auto 12px;
  max-width:1100px;
}

.ipsa-clarification::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:50%;
  height:3px;
  transform:translateY(-50%);
  z-index:0;
  background:linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,31,31,.25) 12%,
    rgba(255,31,31,1) 50%,
    rgba(255,31,31,.25) 88%,
    transparent 100%
  );
  box-shadow:
    0 0 18px rgba(255,31,31,.55),
    0 0 44px rgba(255,31,31,.25);
  opacity:.95;
}

.ipsa-clarification span{
  position:relative;
  z-index:2;
  padding:10px 26px;
  border-radius:999px;
  overflow:hidden;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,.15),
    rgba(255,255,255,.28),
    rgba(255,255,255,.15)
  );
  font-family:Oswald, Inter, sans-serif;
  text-transform:uppercase;
  letter-spacing:.38em;
  font-weight:700;
  font-size:14px;
  color:rgba(245,245,245,.96);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    inset 0 -10px 18px rgba(0,0,0,.35),
    0 10px 28px rgba(0,0,0,.55),
    0 0 26px rgba(255,31,31,.18);
  text-shadow:
    0 1px 0 rgba(255,255,255,.22),
    0 0 14px rgba(255,31,31,.22);
}

.ipsa-clarification span::before,
.ipsa-clarification span::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,.00) 40%,
    rgba(255,255,255,.22) 50%,
    rgba(255,255,255,.00) 60%,
    transparent 100%
  );
  transform:translateX(-160%) skewX(-20deg);
  opacity:.45;
  animation:ipsaSweepBadge 3.2s ease-in-out infinite;
}

@keyframes ipsaSweepBadge{
  0%{ transform:translateX(-160%) skewX(-20deg); opacity:0; }
  15%{ opacity:.45; }
  60%{ opacity:.45; }
  100%{ transform:translateX(160%) skewX(-20deg); opacity:0; }
}

/* Evolution images */
.evo-img{
  width:100%;
  height:auto;
  max-width:100%;
  display:block;
  border-radius:14px;
  object-fit:contain;
  cursor:pointer;
  transition:transform .3s ease, box-shadow .3s ease;
}

.evo-img:hover{
  transform:scale(1.02);
  box-shadow:0 10px 25px rgba(0,0,0,.6);
}

/* =========================================
   HOME ACTIONS
   ========================================= */

.home-actions{
  padding:50px 0 70px;
}

.home-actions-inner{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.action-card{
  display:block;
  text-decoration:none;
  padding:24px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,31,31,.06), rgba(0,0,0,.35));
  box-shadow:0 14px 40px rgba(0,0,0,.45);
  transition:all .25s ease;
  text-align:center;
}

.action-card h3{
  font-family:Oswald, Inter, sans-serif;
  text-transform:uppercase;
  letter-spacing:.05em;
  font-size:20px;
  margin-bottom:10px;
}

.action-card p{
  color:rgba(242,242,244,.75);
  font-size:.95rem;
}

.action-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,31,31,.45);
  box-shadow:
    0 18px 50px rgba(0,0,0,.55),
    0 0 20px rgba(255,31,31,.25);
}

.action-card-primary{
  border:1px solid rgba(255,31,31,.45);
  box-shadow:
    0 14px 40px rgba(0,0,0,.55),
    0 0 22px rgba(255,31,31,.25);
}

.action-card-primary:hover{
  box-shadow:
    0 18px 55px rgba(0,0,0,.60),
    0 0 30px rgba(255,31,31,.40);
}

/* =========================================
   MEMBERSHIP
   ========================================= */

.membership-section{
  padding:0 18px 80px;
}

.membership-frame{
  position:relative;
  border-radius:22px;
  padding:48px 34px;
  background:
    radial-gradient(circle at 25% 35%, rgba(255,255,255,.05), transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(255,255,255,.04), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 22px 60px rgba(0,0,0,.65);
  text-align:center;
  max-width:980px;
  margin:0 auto;
  opacity:0;
  transform:translateY(40px);
  transition:all .8s cubic-bezier(.2,.65,.3,1);
}

.membership-frame.reveal{
  opacity:1;
  transform:translateY(0);
}

.membership-frame h2{
  font-family:'Oswald', sans-serif;
  font-size:28px;
  margin-bottom:28px;
}

.membership-tagline{
  font-family:'Oswald', sans-serif;
  font-weight:600;
  font-size:22px;
  letter-spacing:.4px;
  margin:35px 0 22px;
  color:#ff3b3b;
  text-shadow:none;
}

.sub-perk{
  display:block;
  font-size:14px;
  opacity:.7;
  margin-top:4px;
}

.membership-list{
  list-style:none;
  padding:0;
  margin:0 auto 30px;
  max-width:850px;
  text-align:center;
  display:block !important;
}

.membership-list li{
  position:relative;
  display:block !important;
  margin:0 auto 18px;
  padding-left:28px;
  width:fit-content;
  font-size:17px;
  line-height:1.4;
}

.membership-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:12px;
  height:7px;
  border-left:3px solid #ff3b3b;
  border-bottom:3px solid #ff3b3b;
  transform:rotate(-45deg);
}

.membership-inner{
  text-align:center;
}

.membership-inner .btn-join{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  margin:0 auto 22px;
}

.membership-section .btn-primary,
a.btn.btn-primary.btn-membership{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 40px;
  border-radius:18px;
  font-size:18px;
  font-weight:800;
  letter-spacing:.02em;
  color:#ffffff;
  border:2px solid rgba(255, 60, 60, .95);
  background:linear-gradient(180deg, #ff2b2b 0%, #c30000 100%);
  box-shadow:
    0 0 16px rgba(255,0,0,.55),
    0 0 38px rgba(208,0,0,.40),
    0 12px 26px rgba(0,0,0,.55),
    inset 0 10px 16px rgba(255,255,255,.12),
    inset 0 -14px 18px rgba(0,0,0,.40);
  text-decoration:none;
  transition:transform .18s ease, filter .18s ease, box-shadow .18s ease;
  margin:0 auto 20px;
}

.membership-section .btn-primary::before,
a.btn.btn-primary.btn-membership::before{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  top:8px;
  height:40%;
  border-radius:14px;
  background:linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,0));
  opacity:.65;
  pointer-events:none;
}

.membership-section .btn-primary:hover,
a.btn.btn-primary.btn-membership:hover{
  transform:translateY(-2px);
  filter:brightness(1.05);
  box-shadow:
    0 0 22px rgba(255,0,0,.70),
    0 0 52px rgba(208,0,0,.55),
    0 14px 30px rgba(0,0,0,.60),
    inset 0 12px 18px rgba(255,255,255,.14),
    inset 0 -14px 18px rgba(0,0,0,.36);
}

/* =========================================
   LIGHTBOX — SINGLE SOURCE OF TRUTH
   ========================================= */

.lightbox{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.92);
  justify-content:center;
  align-items:flex-start;
  z-index:100000;
  padding:120px 20px 90px;
  box-sizing:border-box;
  overflow-y:auto;
}

.lightbox.open{
  display:flex;
}

.lightbox-img{
  display:block;
  max-width:94vw;
  max-height:calc(100vh - 150px);
  width:auto;
  height:auto;
  border-radius:12px;
  margin:0 auto;
}

.lightbox-close{
  position:fixed;
  top:110px;
  right:28px;
  font-size:44px;
  color:#fff;
  cursor:pointer;
  user-select:none;
  line-height:1;
  z-index:100001;
  background:transparent;
  border:0;
}

.lightbox-nav{
  position:fixed;
  top:50%;
  transform:translateY(-50%);
  width:54px;
  height:54px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.72);
  color:#fff;
  font-size:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  user-select:none;
  z-index:100001;
  -webkit-appearance:none;
  appearance:none;
}

.lightbox-prev{
  left:max(12px, env(safe-area-inset-left));
}

.lightbox-next{
  right:max(12px, env(safe-area-inset-right));
}

@media (max-width: 640px){
  .lightbox{
    padding:100px 12px 84px;
  }

  .lightbox-img{
    max-width:100%;
    max-height:calc(100vh - 140px);
  }

  .lightbox-close{
    top:92px;
    right:16px;
    font-size:38px;
  }

  .lightbox-nav{
    width:44px;
    height:44px;
    font-size:24px;
    top:auto;
    bottom:max(16px, env(safe-area-inset-bottom));
    transform:none;
  }

  .lightbox-prev{
    left:calc(50% - 56px);
    right:auto;
  }

  .lightbox-next{
    right:calc(50% - 56px);
    left:auto;
  }
}

/* =========================================
   PAGE-SPECIFIC HELPERS
   ========================================= */

.events-page .logo-header{
  max-width:140px;
}

.events-page .site-logo{
  width:280px !important;
  max-width:90vw !important;
  height:auto !important;
  display:block;
  margin:0 auto;
}

.page-about .btn-outline{
  border:2px solid #ff1f1f !important;
  background:rgba(255,0,0,0.12) !important;
  color:#ffffff !important;
  box-shadow:0 0 20px rgba(255,0,0,0.35) !important;
}

.page-merch .hero,
.page-classifications .hero{
  pointer-events:auto;
}

.page-evolution{
  overflow-x:hidden;
}

.page-evolution .poster-logo img{
  width:95%;
  max-width:360px;
  height:auto;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 980px){
  .home-actions-inner{
    grid-template-columns:1fr;
  }

  .twocol{
    grid-template-columns:1fr;
  }

  .img-frame img{
    height:220px;
    object-fit:cover;
  }

  .poster-frame{
    padding:18px;
  }
}

@media (max-width: 768px){
  body{
    padding-top:82px;
  }

  .site-header .nav-wrap{
    min-height:82px;
  }

  .site-header .brand img,
  .site-header .logo-header{
    height:44px !important;
  }

  .site-header .nav-toggle{
    display:block;
  }

  .site-header .nav{
    display:none;
  }

  .site-header .nav.open{
    display:flex !important;
    flex-direction:column !important;
    position:absolute !important;
    top:100% !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    margin-left:0;
    gap:12px !important;
    padding:16px !important;
    background:#000 !important;
    border-top:1px solid rgba(255,255,255,.08);
    box-shadow:0 18px 40px rgba(0,0,0,.55);
    z-index:100001 !important;
  }

  .site-header .nav-links{
    display:flex !important;
    flex-direction:column !important;
    align-items:stretch !important;
    gap:10px !important;
    width:100% !important;
  }

  .site-header .nav-link{
    width:100% !important;
    text-align:center !important;
    padding:12px 0 !important;
  }

  .site-header .nav-cta{
    display:flex !important;
    flex-direction:column !important;
    align-items:stretch !important;
    gap:10px !important;
    width:100% !important;
    margin:4px 0 0 !important;
  }

  .site-header .nav-cta .btn{
    width:100% !important;
    justify-content:center !important;
    text-align:center !important;
  }

  .nav-logo{
    height:42px;
  }

  .hero-frame{
    flex-direction:column;
    text-align:left;
  }

  .hero-left,
  .hero-right{
    max-width:100%;
    flex:0 0 auto;
  }

  .hero-logo img{
    width:clamp(220px, 60vw, 360px);
  }

  .evo-img{
    max-height:60vh;
    object-fit:contain;
  }

  .page-home .hero-actions{
    flex-direction:column !important;
  }

  .page-home .hero-actions .btn{
    width:min(360px, 92%) !important;
    justify-content:center !important;
  }

  .page-home .hero-logo img{
    width:95% !important;
    max-width:360px !important;
    height:auto !important;
    margin:0 auto !important;
  }

  .page-evolution .poster-logo img{
    width:95%;
    max-width:360px;
    height:auto;
  }

  .nav{
    position:fixed;
    top:82px;
    left:0;
    right:0;
    max-height:calc(100vh - 82px);
    overflow-y:auto;
    background:#0a0a0a;
    padding-bottom:40px;
  }
}

@media (max-width: 600px){
  .poster-intro,
  .twocol p{
    margin-bottom:14px;
  }
}

@media (max-width: 560px){
  .hero-title{
    text-align:center;
    max-width:520px;
    margin:10px auto 12px;
    font-size:clamp(26px, 2.2vw, 38px);
    line-height:1.08;
    letter-spacing:.03em;
  }

  .hero-title span{
    color:#ff1f1f;
    text-shadow:0 0 14px rgba(255,0,0,.35);
  }
}

@media (max-width: 420px){
  .page-home .hero-logo img{
    width:92% !important;
    max-width:330px !important;
  }

  .page-evolution .poster-logo img{
    width:92%;
    max-width:330px;
  }
}

@media (min-width: 769px){
  .site-header .nav{
    display:flex !important;
  }

  .site-header .nav-toggle{
    display:none !important;
  }
}
/* =========================================
   HEADER FIX PACK
   ========================================= */

.site-header{
  position:fixed !important;
  top:0 !important;
  left:0 !important;
  right:0 !important;
  width:100% !important;
  z-index:2147483647 !important;
}

body{
  padding-top:96px !important;
}

@media (min-width: 769px){

  .site-header .container{
    max-width:1280px !important;
    padding-left:16px !important;
    padding-right:16px !important;
  }

  .site-header .nav-wrap{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:12px !important;
    min-height:96px !important;
  }

  .site-header .brand{
    flex:0 0 auto !important;
    min-width:0 !important;
    margin-right:8px !important;
  }

  .site-header .logo-header{
    height:52px !important;
    width:auto !important;
    max-width:none !important;
    display:block !important;
  }

  .site-header .nav{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:12px !important;
    margin-left:auto !important;
    flex:1 1 auto !important;
    min-width:0 !important;
  }

  .site-header .nav-links{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:12px !important;
    flex:1 1 auto !important;
    min-width:0 !important;
    flex-wrap:wrap !important;
  }

  .site-header .nav-link{
    display:inline-flex !important;
    align-items:center !important;
    white-space:nowrap !important;
    padding:8px 4px !important;
    font-size:13px !important;
    line-height:1.1 !important;
    flex:0 0 auto !important;
  }

  .site-header .nav-cta{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:8px !important;
    flex:0 0 auto !important;
    margin-left:10px !important;
    min-width:0 !important;
  }

  .member-badge-pro{
    display:flex !important;
    align-items:center !important;
    gap:8px !important;
    flex-wrap:nowrap !important;
  }

  .member-badge-number{
    white-space:nowrap !important;
    font-size:13px !important;
    padding:8px 10px !important;
  }

  .member-badge-link{
    white-space:nowrap !important;
    font-size:13px !important;
    padding:8px 12px !important;
  }

  .site-header .nav-cta .btn{
    width:auto !important;
    min-width:0 !important;
    height:auto !important;
    padding:10px 14px !important;
    font-size:13px !important;
    line-height:1.1 !important;
    white-space:nowrap !important;
  }

  .site-header .nav-cta .btn-join{
    width:auto !important;
    min-width:118px !important;
    height:auto !important;
    padding:10px 14px !important;
  }
}

@media (max-width: 768px){
  body{
    padding-top:82px !important;
  }

  .site-header .logo-header{
    height:44px !important;
  }

  .site-header .nav-wrap{
    min-height:82px !important;
  }
}

/* 5) Extra insurance for classifications + gallery top content */
.page-classifications,
.page-gallery{
  overflow-x: hidden;
}

.page-classifications main,
.page-gallery main,
.page-classifications .page-hero,
.page-gallery .gallery-main,
.page-gallery .gallery-hero{
  position: relative;
  z-index: 1;
}
.about-join-note{
  margin-top:10px;
  text-align:center;
  font-family:'Inter', sans-serif;
  font-size:14px;
  font-weight:700;
  color:#ffffff;
  letter-spacing:.02em;
}

.about-join-note::before{
  content:"• ";
  color:#d10000;
}
.about-join-wrap{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.about-join-note{
  margin-top:10px;
  text-align:center;
  font-family:'Inter', sans-serif;
  font-size:14px;
  font-weight:700;
  color:#ffffff;
  letter-spacing:.02em;
}

.about-join-note::before{
  content:"• ";
  color:#d10000;
}
.about-join-note::after{
  content:"• ";
  color:#d10000;
}
.join-note{
  text-align:center;
  font-family:'Inter', sans-serif;
  font-size:14px;
  font-weight:700;
  letter-spacing:.02em;
  color:#d8d8d8;
  line-height:1.35;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.join-note::before,
.join-note::after{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:#d10000;
  display:inline-block;
  box-shadow:0 0 6px rgba(209,0,0,.6);
  animation:dotPulse 2.2s infinite ease-in-out;
}

.join-note::after{
  animation-delay:1.1s;
}

@keyframes dotPulse{
  0%, 100%{
    transform:scale(1);
    opacity:.8;
    box-shadow:0 0 6px rgba(209,0,0,.5);
  }
  50%{
    transform:scale(1.5);
    opacity:1;
    box-shadow:0 0 14px rgba(209,0,0,.9);
  }
}
.highlight-red{
  color:#ff3b3b;
  font-weight:800;
}
.classifications-grid .class-header h2{
  font-size:42px;
  line-height:1.05;
}
.classifications-grid .class-header h2{
  font-size:42px;
  line-height:1.05;
  letter-spacing:1px;
  .merch-coming-soon{
  text-align:center;
  font-family:Oswald, sans-serif;
  font-size:clamp(42px, 7vw, 96px);
  line-height:1.05;
  font-weight:700;
  letter-spacing:.03em;
  color:#fff;
  margin:70px auto;
  max-width:1100px;
  text-transform:uppercase;
  text-shadow:
    0 0 12px rgba(255,255,255,.18),
    0 0 24px rgba(255,0,0,.22),
    0 6px 22px rgba(0,0,0,.5);
}
/* Merch Coming Soon - IPSA Style */
.merch-coming-soon{
  text-align:center;
  font-family:Oswald, sans-serif;
  font-size:clamp(42px, 7vw, 96px);
  line-height:1.05;
  font-weight:700;
  letter-spacing:.03em;
  color:#fff;
  margin:80px auto;
  max-width:1100px;
  text-transform:uppercase;
  position:relative;

  animation: merchGlow 2.2s ease-in-out infinite;
}

/* Glow Pulse */
@keyframes merchGlow{
  0%, 100%{
    text-shadow:
      0 0 8px rgba(255,255,255,.15),
      0 0 18px rgba(255,0,0,.25),
      0 6px 20px rgba(0,0,0,.5);
  }
  50%{
    text-shadow:
      0 0 14px rgba(255,255,255,.25),
      0 0 32px rgba(255,0,0,.6),
      0 6px 28px rgba(0,0,0,.65);
  }
}

/* Flashing side dots */
.merch-coming-soon::before,
.merch-coming-soon::after{
  content:'●';
  color:#ff0000;
  font-size:clamp(18px, 2vw, 26px);
  position:relative;
  top:-6px;
  margin:0 18px;

  animation: merchDotFlash 1s infinite;
}

/* Offset one dot so they alternate */
.merch-coming-soon::after{
  animation-delay:.5s;
}

@keyframes merchDotFlash{
  0%, 100%{
    opacity:0.2;
    transform:scale(0.9);
  }
  50%{
    opacity:1;
    transform:scale(1.3);
  }
}
/* Merch Coming Soon - IPSA Style */
.merch-coming-soon{
  position: relative;
  overflow: hidden;
  text-align: center;
  font-family: Oswald, sans-serif;
  font-size: clamp(42px, 7vw, 96px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: .03em;
  color: #fff;
  text-transform: uppercase;
  max-width: 1200px;
  margin: 90px auto;
  padding: 48px 28px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,.04) 8%, rgba(20,20,20,.92) 45%, rgba(8,8,8,.98) 100%),
    linear-gradient(135deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 18%, rgba(255,255,255,.05) 36%, rgba(255,255,255,0) 55%, rgba(255,255,255,.06) 74%, rgba(255,255,255,0) 100%),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.035) 0px,
      rgba(255,255,255,.035) 2px,
      rgba(0,0,0,.03) 2px,
      rgba(0,0,0,.03) 4px
    );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    inset 0 -18px 28px rgba(0,0,0,.45),
    0 10px 26px rgba(0,0,0,.45),
    0 0 24px rgba(255,0,0,.10);
  animation: merchGlow 2.2s ease-in-out infinite;
  isolation: isolate;
}

/* brushed steel shine */
.merch-coming-soon::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  z-index:0;
  background:
    linear-gradient(115deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.07) 18%,
      rgba(255,255,255,.14) 28%,
      rgba(255,255,255,.03) 38%,
      rgba(255,255,255,0) 52%,
      rgba(255,255,255,.05) 68%,
      rgba(255,255,255,0) 100%);
  mix-blend-mode: screen;
  opacity: .7;
}

/* smoke layer */
.merch-coming-soon::after{
  content:"";
  position:absolute;
  left:-10%;
  right:-10%;
  top:-20%;
  bottom:-20%;
  border-radius:inherit;
  pointer-events:none;
  z-index:0;
  background:
    radial-gradient(circle at 18% 55%, rgba(255,255,255,.08) 0%, rgba(255,255,255,.03) 16%, transparent 34%),
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.07) 0%, rgba(255,255,255,.025) 18%, transparent 38%),
    radial-gradient(circle at 82% 60%, rgba(255,255,255,.08) 0%, rgba(255,255,255,.03) 16%, transparent 34%),
    radial-gradient(circle at 35% 78%, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 14%, transparent 32%);
  filter: blur(18px);
  opacity: .6;
  animation: merchSmoke 8s ease-in-out infinite alternate;
}

.merch-coming-soon > *{
  position: relative;
  z-index: 1;
}

.merch-coming-soon-text{
  display:inline-block;
  animation: merchGlow 2.2s ease-in-out infinite;
}

.merch-coming-soon-text::before,
.merch-coming-soon-text::after{
  content:'●';
  color:#ff0000;
  font-size:clamp(18px, 2vw, 26px);
  position:relative;
  top:-6px;
  margin:0 18px;
  text-shadow: 0 0 10px rgba(255,0,0,.45);
  animation: merchDotFlash 1s infinite;
}

.merch-coming-soon-text::after{
  animation-delay:.5s;
}

@keyframes merchGlow{
  0%, 100%{
    text-shadow:
      0 0 8px rgba(255,255,255,.15),
      0 0 18px rgba(255,0,0,.25),
      0 6px 20px rgba(0,0,0,.5);
  }
  50%{
    text-shadow:
      0 0 14px rgba(255,255,255,.24),
      0 0 34px rgba(255,0,0,.62),
      0 6px 28px rgba(0,0,0,.65);
  }
}

@keyframes merchDotFlash{
  0%, 100%{
    opacity:.25;
    transform:scale(.9);
  }
  50%{
    opacity:1;
    transform:scale(1.28);
  }
}

@keyframes merchSmoke{
  0%{
    transform: translate3d(-2%, 0, 0) scale(1);
    opacity:.42;
  }
  50%{
    transform: translate3d(2%, -1.5%, 0) scale(1.04);
    opacity:.6;
  }
  100%{
    transform: translate3d(4%, 1.5%, 0) scale(1.08);
    opacity:.48;
  }
}

@media (max-width: 768px){
  .merch-coming-soon{
    margin: 60px 14px;
    padding: 34px 18px;
    border-radius: 14px;
  }

  .merch-coming-soon-text::before,
  .merch-coming-soon-text::after{
    margin: 0 10px;
    top: -3px;
  }
}
.merch-coming-soon{
  width:100%;
  text-align:center;
}

.merch-line-1{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  width:100%;
  text-align:center;
  font-family:Oswald, sans-serif;
  font-weight:700;
  line-height:1.05;
  flex-wrap:nowrap;
}

.merch-line-1 .merch-dot{
  width:10px;
  height:10px;
  min-width:10px;
  border-radius:50%;
  background:#ff1a1a;
  box-shadow:0 0 8px rgba(255,0,0,.85);
  animation:merchDotPulse 1.2s ease-in-out infinite;
  display:inline-block;
  vertical-align:middle;
}

.merch-line-1 .merch-dot:last-child{
  animation-delay:.6s;
}

.merch-line-2{
  display:block;
  text-align:center;
  margin-top:18px;
}

@keyframes merchDotPulse{
  0%,100%{
    opacity:1;
    transform:scale(1);
  }
  50%{
    opacity:.35;
    transform:scale(1.18);
  }
}

@media (max-width:768px){
  .merch-line-1{
    gap:10px;
    flex-wrap:wrap;
  }

  .merch-line-1 .merch-dot{
    width:8px;
    height:8px;
    min-width:8px;
  }

  .merch-line-2{
    margin-top:12px;
  }
}
.hero-actions-with-latest{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.hero-latest-link{
  font-family:Oswald, sans-serif;
  font-size:16px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.05em;
  color:#ff3b3b;
  text-decoration:none;
  transition:.2s ease;
}

.hero-latest-link:hover{
  color:#fff;
  text-shadow:0 0 10px rgba(255,0,0,.6);
}
/* =========================
   IPSA TRUST FOOTER
   ========================= */

.ipsa-footer{
  margin-top:60px;
  padding:40px 20px 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.6));
  border-top:1px solid rgba(255,255,255,.08);
}

.ipsa-footer-inner{
  max-width:1100px;
  margin:0 auto;
  text-align:center;
}

.ipsa-footer-title{
  font-family:Oswald, sans-serif;
  font-size:22px;
  font-weight:700;
  letter-spacing:.5px;
  margin-bottom:6px;
}

.ipsa-footer-sub{
  font-size:13px;
  color:#bdbdbd;
  margin-bottom:18px;
}

.ipsa-footer-links{
  font-size:14px;
  margin-bottom:16px;
}

.ipsa-footer-links a{
  color:#ffffff;
  text-decoration:none;
  font-weight:600;
}

.ipsa-footer-links a:hover{
  color:#ff3b3b;
}

.ipsa-footer-links span{
  margin:0 8px;
  color:#666;
}

.ipsa-footer-secure{
  font-size:13px;
  color:#d0d0d0;
  margin-bottom:14px;
  opacity:.85;
}

.ipsa-footer-copy{
  font-size:12px;
  color:#888;
}
.login-trust-wrap{
  margin:0 0 18px;
  padding:16px 18px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  box-shadow:0 8px 22px rgba(0,0,0,.22);
}

.login-trust-kicker{
  color:#ff3b3b;
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:6px;
}

.login-trust-title{
  color:#fff;
  font-family:Oswald, sans-serif;
  font-size:28px;
  font-weight:700;
  line-height:1.05;
  margin-bottom:8px;
}

.login-trust-text{
  color:#d4d4d4;
  font-size:14px;
  line-height:1.5;
  margin-bottom:12px;
}

.login-trust-links{
  font-size:14px;
}

.login-trust-links a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

.login-trust-links a:hover{
  color:#ff3b3b;
}

.login-trust-links span{
  color:#777;
  margin:0 8px;
}
.login-note{
  margin-top:16px;
  color:#a9a9a9;
  font-size:13px;
  line-height:1.5;
}
.stripe-note{
  margin-top:14px;
  color:#a9a9a9;
  font-size:13px;
  line-height:1.5;
  text-align:center;
}
.stripe-secure{
  text-align:center;
  font-weight:700;
  margin-top:10px;
}
.header-admin-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:18px;
  height:18px;
  padding:0 6px;
  margin-left:6px;
  border-radius:999px;
  background:#d40000;
  color:#fff;
  font-size:10px;
  font-weight:900;
  line-height:1;
  box-shadow:0 0 0 2px rgba(0,0,0,.25);
}