:root {
  --bg: #f7f9fc;
  --card: #ffffff;
  --text: #1b2430;
  --muted: #5c6773;
  --primary: #0d6efd;
  --border: #d9e1ea;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1000px, 92vw);
  margin: 0 auto;
}

.hero {
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
  color: #fff;
  padding: 64px 0 48px;
  text-align: center;
}

.hero h1,
.hero p,
.hero a {
  color: #fff;
}

.venue {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

h1 {
  margin: 10px 0 8px;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1.05;
}

.project-title {
  margin: 10px 0 18px;
  font-size: clamp(1.25rem, 2.1vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
  white-space: normal;
  text-wrap: balance;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}

.authors,
.affiliation {
  margin: 6px 0;
  opacity: 0.96;
  color: #fff;
  font-size: 1.1rem;
}

.authors a {
  color: #fff;
  text-underline-offset: 2px;
}

.affiliation-row {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.company-logo {
  width: min(160px, 28vw);
  max-width: 160px;
  height: auto;
  display: block;
}

.links {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.links a {
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 1.05rem;
  transition: all 0.2s ease;
}

.links a:hover {
  background: rgba(255, 255, 255, 0.15);
}

main {
  padding: 36px 0 48px;
}

section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 18px;
}

h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.35rem;
}

p,
li {
  color: var(--text);
}

.hero p,
.hero .authors,
.hero .affiliation,
.hero .venue {
  color: #fff;
}

ul {
  margin: 0;
  padding-left: 20px;
}

figure {
  margin: 0 0 14px;
}

figure img {
  display: block;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 10px;
}

figcaption {
  margin-top: 8px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  border: 1px solid var(--border);
  padding: 8px 10px;
  text-align: left;
  font-size: 0.95rem;
}

th {
  background: #eef3fa;
}

.highlight {
  background: #f2f7ff;
  font-weight: 600;
}

pre {
  margin: 0;
  overflow-x: auto;
  background: #10151d;
  color: #e8eef7;
  border-radius: 10px;
  padding: 14px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 20px 0 28px;
  text-align: center;
  color: var(--muted);
}

.reflex-visitor-map {
  margin: 10px auto 0;
  max-width: 280px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.reflex-visitor-map > * {
  max-width: 100%;
}
