/* =========================
   THEME VARIABLES (Option B)
   ========================= */
:root{
  --bg:#070a12;
  --panel: rgba(255,255,255,0.07);
  --panel2: rgba(255,255,255,0.12);
  --text: rgba(255,255,255,0.95);
  --muted: rgba(255,255,255,0.72);
  --brand:#ff3b5c;
  --brand2:#2a1b55;
  --line: rgba(255,255,255,0.16);
  --focus: rgba(255,59,92,0.55);
  --shadow: 0 14px 40px rgba(0,0,0,0.45);
  --radius: 18px;
  --max: 1100px;
}

/* =========================
   RESET / BASE
   ========================= */
*{ 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, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1200px 700px at 70% -10%, rgba(255,59,92,0.35), transparent 55%),
    radial-gradient(900px 600px at 10% 10%, rgba(42,27,85,0.7), transparent 55%),
    linear-gradient(180deg, #05070f, #070a12 40%, #040610);
  color: var(--text);
  line-height:1.55;
}

a{ color:inherit; }

a:focus, button:focus, input:focus, textarea:focus{
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 10px;
}

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

.skip-link{
  position:absolute;
  top:-100px;
  left:12px;
  background:#fff;
  color:#000;
  padding:10px 12px;
  border-radius:12px;
  z-index:1000;
}
.skip-link:focus{ top:12px; }

/* =========================
   HEADER / NAV
   ========================= */
header{
  position: sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,10,18,0.65);
  border-bottom: 1px solid var(--line);
}

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

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand img{
  width:150px;
  height:150px;
  object-fit:contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.35));
}
.brand .title{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand .title strong{
  letter-spacing:0.8px;
  text-transform:uppercase;
  font-size:13px;
  color: var(--muted);
}
.brand .title span{
  font-weight:800;
  font-size:16px;
}

nav ul{
  display:flex;
  align-items:center;
  gap:12px;
  list-style:none;
  padding:0;
  margin:0;
  flex-wrap:wrap;
  justify-content:flex-end;
}

nav a{
  text-decoration:none;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 999px;
  border:1px solid transparent;
}
nav a:hover{
  color: var(--text);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
}

.nav .news-link{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,59,92,0.45);
  background: rgba(255,59,92,0.12);
  color: var(--text);
  font-weight: 800;
}

.nav .news-link:hover{
  background: rgba(255,59,92,0.22);
}
/* =========================
   BUTTONS
   ========================= */
.cta{
  display:inline-block;
  text-decoration:none;
  background: linear-gradient(90deg, var(--brand), #ff6b86);
  color:#0b0d14;
  font-weight:900;
  padding: 12px 18px;
  border-radius:999px;
  box-shadow: var(--shadow);
  border:0;
}
.cta:hover{ filter: brightness(1.05); }

/* =========================
   HERO
   ========================= */
.hero{
  padding: 72px 0 28px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:24px;
  align-items:start;
}
@media (max-width:900px){
  .hero-grid{ grid-template-columns:1fr; }
}

/* =========================
   CARDS
   ========================= */
.card{
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.04)
  );
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:22px;
  box-shadow: var(--shadow);
}

/* =========================
   HEADINGS / TEXT
   ========================= */
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color: var(--muted);
  font-weight:700;
  letter-spacing:0.6px;
  text-transform:uppercase;
  font-size:12px;
}
.kicker .dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(255,59,92,0.15);
}

h1{
  margin:12px 0 8px;
  font-size:44px;
  line-height:1.08;
}
@media (max-width:520px){
  h1{ font-size:36px; }
}

h2{ margin: 0 0 10px; font-size:26px; }
h3{ margin: 0 0 10px; font-size:18px; }

p{ margin:10px 0; color: var(--muted); }
.lead{
  font-size:18px;
  color: var(--text);
}

/* =========================
   CALLOUT HEADERS (Dual Pointers)
   ========================= */
.callout-title{
  display:inline-flex;
  align-items:center;
  gap:14px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);

  /* Stronger, distinct header color */
  background: linear-gradient(
    90deg,
    rgba(255,59,92,0.45),
    rgba(42,27,85,0.55)
  );

  box-shadow: 0 14px 36px rgba(0,0,0,0.45);
  position: relative;

  font-weight: 900;
  font-size: 20px;          /* Bigger text */
  letter-spacing: 0.2px;
  color: var(--text);
}

/* LEFT inverted triangle */
.callout-title::before{
  content:"";
  position:absolute;
  left: 18px;
  top: calc(100% + 6px);
  width:0;
  height:0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 12px solid rgba(255,59,92,0.75);
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.4));
}

/* RIGHT inverted triangle */
.callout-title::after{
  content:"";
  position:absolute;
  right: 18px;
  top: calc(100% + 6px);
  width:0;
  height:0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 12px solid rgba(255,59,92,0.75);
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.4));
}

/* Size variants */
.callout-title.lg{
  font-size: 22px;
  padding: 16px 26px;
}

.callout-title.sm{
  font-size: 15px;
  padding: 10px 16px;
}
/* =========================
   GRIDS / SECTIONS
   ========================= */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:16px;
}
@media (max-width:900px){
  .grid-3{ grid-template-columns:1fr; }
}

.section{
  padding:24px 0;
}

.section-title{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.section-title small{ color: var(--muted); }

hr.sep{
  border:0;
  height:1px;
  background: var(--line);
  margin:18px 0;
}

/* =========================
   LISTS / BADGES
   ========================= */
.badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.14);
  color: var(--muted);
  font-weight:700;
  font-size:12px;
}

.list{
  margin:10px 0 0;
  padding-left:18px;
  color: var(--muted);
}
.list li{ margin:8px 0; }

/* =========================
   FORMS
   ========================= */
.form{
  display:grid;
  gap:12px;
}
label{
  font-weight:700;
  font-size:14px;
}
input, textarea, select{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.25);
  color: var(--text);
}
textarea{
  min-height:140px;
  resize:vertical;
}

.notice{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
  color: var(--muted);
}

/* =========================
   FOOTER
   ========================= */
.footer{
  border-top:1px solid var(--line);
  margin-top:44px;
  padding:26px 0 40px;
  color: var(--muted);
}
.footer a{ color: var(--muted); }
.footer a:hover{ color: var(--text); }