:root{
    --orange:#FF8300;
    --orange-light:#FBB042;
    --light-blue:#00AEEF;
    --navy:#182A32;
    --deep:#04101a;
    --white:#FFFFFF;
    --text-secondary: rgba(255,255,255,0.85);
    --card-bg: rgba(6, 18, 30, 0.58);
    --card-border: rgba(255,255,255,0.14);
    --divider: rgba(255,255,255,0.20);
    --radius: 28px;
  }

  *{ box-sizing:border-box; }

  html,body{
    margin:0;
    padding:0;
    min-height:100%;
    font-family:'Source Sans 3','Source Sans Pro','Segoe UI',Helvetica,Arial,sans-serif;
    color:var(--white);
  }

  body{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:56px 20px;
    background-image:url('/assets/images/wit-background.png');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
  }

  @media (max-width:900px){
    body{ background-attachment:scroll; }
  }

  .card{
    position:relative;
    width:100%;
    max-width:1200px;
    background:var(--card-bg);
    border:1px solid var(--card-border);
    border-radius:var(--radius);
    backdrop-filter:blur(20px) saturate(140%);
    -webkit-backdrop-filter:blur(20px) saturate(140%);
    padding:56px 40px 52px;
    box-shadow:0 30px 80px rgba(0,0,0,0.35);
    opacity:1;
  }

  @media (prefers-reduced-motion:no-preference){
    .card{
      animation:riseIn 0.7s cubic-bezier(.22,.8,.32,1) 0.05s backwards;
    }
  }

  @keyframes riseIn{
    from{ opacity:0; transform:translateY(16px); }
    to{ opacity:1; transform:translateY(0); }
  }

  @media (max-width:600px){
    .card{ padding:36px 24px 32px; border-radius:20px; }
  }

  .logo-wrap{
    display:flex;
    justify-content:center;
    margin-bottom:28px;
  }
  .logo-badge{
    display:inline-flex;
    background:#FFFFFF;
    border-radius:24px;
    padding:0px 30px;
    box-shadow:0 16px 40px rgba(0,0,0,0.28);
  }
  .logo-badge svg{
    width:100%;
    max-width:380px;
    height:auto;
    display:block;
  }
  @media (max-width:600px){
    .logo-badge{ padding:0px 22px; border-radius:18px; }
    .logo-badge svg{ max-width:230px; }
  }

  .eyebrow{
    text-align:center;
    text-transform:uppercase;
    letter-spacing:0.14em;
    font-size:13px;
    font-weight:600;
    color:var(--orange-light);
    margin:0 0 14px;
  }

  h1{
    text-align:center;
    font-size:clamp(22px, 3.4vw, 30px);
    line-height:1.32;
    font-weight:700;
    margin:0 0 0px;
    color:var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
  }
h2 {
  text-transform: uppercase;
  font-size: 20px;
  text-align: center;
  letter-spacing:0.12em;
    color:var(--orange-light);
    margin: 0px 0px 20px 0px;
}
  .description{
    text-align:center;
    font-size:16.5px;
    line-height:1.65;
    color:var(--text-secondary);
    margin:0 auto 34px;
  }

  .divider{
    height:1px;
    background:var(--divider);
    border:none;
    margin:0 0 30px;
  }

h3 {
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:0.12em;
    color:var(--orange-light);
    margin:0 0 16px;
    text-align:center;
  }

  .expect-list{
    list-style:none;
    margin:0 0 40px;
    padding:0;
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:13px;
  }

  .expect-list li{
  position:relative;
  font-size:15.5px;
  text-align: left;
  line-height:1.55;
  color:var(--text-secondary);
  padding: 15px 20px;
  width: 30%;
  background-color: rgba(255,255,255,0.14);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.32);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  /*justify-content: center;*/
}
.expect-list li i {
  display: block;
  text-align: left;
}

/*  .expect-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:8px;
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--orange);
  }*/

  .buttons{
    display:flex;
    gap:16px;
    justify-content:center;
    flex-wrap:wrap;
    margin-bottom: 20px;
  }

  .btn{
    flex:1 1 220px;
    max-width:280px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:3px;
    text-decoration:none;
    background:var(--orange);
    color:var(--navy);
    font-weight:700;
    padding:16px 20px;
    border-radius:14px;
    text-align:center;
    transition:transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    box-shadow:0 10px 24px rgba(255,131,0,0.25);
  }

  .btn:hover{
    background:var(--orange-light);
    transform:translateY(-2px);
    box-shadow:0 14px 30px rgba(255,131,0,0.35);
  }

  .btn:focus-visible{
    outline:3px solid #ffffff;
    outline-offset:3px;
  }

  .btn .btn-title{
    font-size:15.5px;
    letter-spacing:0.01em;
  }

  .btn .btn-time{
    font-size:12.5px;
    font-weight:600;
    letter-spacing:0.06em;
    text-transform:uppercase;
    opacity:0.85;
  }

  .helper{
    text-align:center;
    font-size:13px;
    color:rgba(255,255,255,0.65);
    margin:20px 0 0;
  }
  .speakers {
    text-align: center;
    margin-bottom: 40px;
  }
.speaker-grid {
  display:grid;
    grid-template-columns:repeat(auto-fit, minmax(170px, 1fr));
    gap:20px 10px;
    margin-bottom: 20px;
}
.speaker {
  text-align: center;
}
.speakerphoto {
  width: 50%;
  margin: 0 auto 10px;
}
.speakerphoto img {
  width: 100%;
  display: block;
}
  .role-badge{
    display:inline-block;
    font-size:10px;
    font-weight:700;
    letter-spacing:0.09em;
    text-transform:uppercase;
    padding:3px 11px;
    border-radius:999px;
    margin-bottom:9px;
  }
  .role-host{
    background:var(--light-blue);
    color:var(--navy);
  }
  .role-panelist{
    background:rgba(255,255,255,0.14);
    color:#fff;
    border:1px solid rgba(255,255,255,0.32);
  }
  .speaker-name{
    font-weight:700;
    font-size:14.5px;
    color:#fff;
    margin:0 0 3px;
    line-height:1.3;
  }
  .speaker-title{
    font-size:12px;
    color:var(--text-secondary);
    line-height:1.4;
    margin:0 0 3px;
    padding:0 4px;
  }
  .speaker-company{
    font-size:12px;
    font-weight:700;
    color:var(--orange-light);
    margin:0;
  }

@media screen and (max-width: 767px) {
  .expect-list {
    flex-wrap: wrap;
  }
  .expect-list li {
    width: 48%;
  }
}
@media screen and (max-width: 500px) {
  .expect-list li {
    width: 100%;
  }
}