:root{
  --bg: #0b1020;
  --panel: rgba(255,255,255,0.06);
  --panel-2: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.90);
  --muted: rgba(255,255,255,0.62);
  --muted2: rgba(255,255,255,0.48);
  --accent: #7dd3fc;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(900px 600px at 10% 10%, rgba(125,211,252,0.18), transparent 60%),
    radial-gradient(700px 500px at 85% 15%, rgba(167,139,250,0.16), transparent 55%),
    radial-gradient(800px 700px at 50% 90%, rgba(34,211,238,0.12), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height:1.55;
}

/* page container */

.wrap{
  width:min(1000px,92vw);
  margin:0 auto;
  padding:60px 0 70px;
}

/* HERO SECTION */

.hero{
  text-align:center;
  padding:60px 18px 40px;
  border-radius:22px;
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
}

/* top meta */

.hero-meta{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:20px;
  color:rgba(255,255,255,0.70);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.meta-email{
  color:rgba(255,255,255,0.70);
  text-decoration:none;
}

.meta-email:hover{
  color:var(--accent);
  text-decoration:underline;
}

/* BIG NAME */

.hero-name{
  margin:0 0 24px;
  font-size:clamp(52px,8vw,96px);
  letter-spacing:-0.04em;
  text-transform:uppercase;
  font-weight:900;
  line-height:.95;
  color:rgba(255,255,255,0.95);

  /* glow effect */
  text-shadow:
    0 0 10px rgba(125,211,252,0.35),
    0 0 25px rgba(125,211,252,0.20),
    0 0 60px rgba(125,211,252,0.10);
}

/* PHOTO CENTER */

.hero-visual{
  display:flex;
  justify-content:center;
  margin:26px 0;
}

.hero-photo{
  width:340px;
  max-width:90%;
  border-radius:20px;
  border:3px solid var(--accent);
  box-shadow:
    0 25px 60px rgba(0,0,0,0.55),
    0 0 40px rgba(125,211,252,0.35);
  transition: transform .3s ease, box-shadow .3s ease;
}

.hero-photo:hover{
  transform:scale(1.04);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.6),
    0 0 60px rgba(125,211,252,0.55);
}

/* TAGLINES */

.hero-tagline{
  margin:0;
  font-size:clamp(18px,3vw,34px);
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--accent);
  font-weight:800;
}

.hero-tagline.big{
  font-size:clamp(26px,5vw,56px);
  color:rgba(255,255,255,0.92);
  letter-spacing:.04em;
  margin-top:6px;
}

/* INTRO TEXT */

.hero-intro{
  margin:28px auto 0;
  max-width:640px;
  font-size:16px;
  line-height:1.8;
  color:rgba(255,255,255,0.82);
  text-align:center;
}

/* DIVIDER */

.rule{
  border:0;
  height:1px;
  background:rgba(255,255,255,0.10);
  margin:28px 0;
}

/* SECTIONS */

.section{
  margin-top:28px;
}

.section-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}

h2{
  margin:0;
  font-size:20px;
  letter-spacing:-0.2px;
}

.sub{
  margin:0;
  color:var(--muted2);
  font-size:13px;
}

/* TILE GRID (portfolio style boxes) */

.grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

.tile{
  display:block;
  padding:18px;
  border-radius:16px;
  background:var(--panel);
  border:1px solid var(--border);
  text-decoration:none;
  color:var(--text);
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}

.tile:hover{
  transform:translateY(-4px);
  background:var(--panel-2);
  border-color:rgba(125,211,252,0.35);
}

.tile-title{
  font-weight:700;
  margin-bottom:6px;
}

.tile-desc{
  color:var(--muted);
  font-size:13px;
}

/* TABLE */

.table-wrap{
  padding:16px;
  border-radius:16px;
  background:var(--panel);
  border:1px solid var(--border);
}

table{
  width:100%;
  border-collapse:collapse;
}

th, td{
  border-bottom:1px solid rgba(255,255,255,0.10);
  padding:10px;
  text-align:left;
  font-size:13px;
}

th{
  color:var(--muted2);
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
  font-size:11px;
}

.note{
  margin:10px 0 0;
  color:var(--muted2);
  font-size:12px;
}

/* VIDEO GRID */

.video-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

.video-grid iframe{
  width:100%;
  aspect-ratio:16/9;
  border-radius:14px;
  border:1px solid var(--border);
  background:#000;
}

/* FOOTER */

.footer{
  margin-top:40px;
  color:var(--muted2);
  font-size:12px;
  text-align:center;
}

/* RESPONSIVE */

@media (max-width:820px){

  .grid{
    grid-template-columns:1fr;
  }

  .video-grid{
    grid-template-columns:1fr;
  }

}