:root {
  color-scheme: light;
  --bg: #f6f7f9;
  --panel: #ffffff;
  --ink: #182026;
  --muted: #5d6975;
  --line: #d9dee5;
  --accent: #006d77;
  --accent-strong: #004d55;
  --table-head: #e9f3f4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: #101820;
  color: #fff;
  padding: 56px 0 44px;
  border-bottom: 6px solid var(--accent);
}

.eyebrow {
  margin: 0 0 12px;
  color: #8ed5dc;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.authors,
.affiliation {
  margin-bottom: 4px;
  color: #dbe4ea;
  font-size: 1.06rem;
}

main {
  padding: 34px 0 56px;
}

.intro {
  max-width: 860px;
  margin-bottom: 28px;
}

.intro h2,
.section-heading h2 {
  margin-bottom: 6px;
  font-size: 1.35rem;
  line-height: 1.25;
}

.intro p,
.section-heading p {
  color: var(--muted);
}

.attack-section {
  margin-top: 28px;
  padding-top: 4px;
}

.section-heading {
  margin-bottom: 12px;
}

.table-wrap {
  overflow-x: auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 14px;
  text-align: left;
  vertical-align: top;
}

thead th {
  background: var(--table-head);
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

tbody th {
  width: 180px;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92rem;
  font-weight: 700;
}

.audio-cell {
  display: grid;
  gap: 8px;
  min-width: 142px;
}

.audio-cell span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

audio {
  width: 100%;
  min-width: 132px;
  height: 34px;
}


.interactive-figure {
  margin: 30px 0 34px;
}

.figure-demo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: start;
}

.figure-stage {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.figure-stage img {
  display: block;
  width: 100%;
  height: auto;
}

.marker-layer {
  position: absolute;
  inset: 0;
}

.figure-marker {
  position: absolute;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--marker-color);
  box-shadow: 0 0 0 1px rgba(16, 24, 32, 0.45), 0 2px 8px rgba(16, 24, 32, 0.35);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.figure-marker:hover,
.figure-marker:focus-visible,
.figure-marker.is-active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 109, 119, 0.22), 0 0 0 1px rgba(16, 24, 32, 0.45), 0 2px 8px rgba(16, 24, 32, 0.35);
}

.figure-marker.is-active {
  width: 22px;
  height: 22px;
}

.point-panel {
  position: sticky;
  top: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.panel-kicker {
  margin-bottom: 8px;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.point-panel h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.panel-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.metric-chip {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 9px 10px;
  background: #f8fafb;
  border: 1px solid var(--line);
  border-left: 4px solid var(--chip-color, var(--accent));
  border-radius: 8px;
}

.metric-label {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-chip strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.18;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.point-audio-list {
  display: grid;
  gap: 12px;
}

.point-audio-heading {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.point-audio-item {
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.point-audio-item strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88rem;
}

@media (max-width: 920px) {
  .figure-demo {
    grid-template-columns: 1fr;
  }

  .point-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    padding: 38px 0 32px;
  }

  main {
    padding-top: 24px;
  }

  th,
  td {
    padding: 12px;
  }
}

.entry-page main {
  padding-bottom: 72px;
}

.landing-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 24px;
  align-items: start;
  margin-bottom: 30px;
}

.landing-copy h2 {
  margin-bottom: 8px;
  font-size: 1.5rem;
  line-height: 1.25;
}

.landing-copy p {
  color: var(--muted);
}

.landing-figure {
  margin: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.landing-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.entry-intro {
  max-width: 760px;
  margin-bottom: 20px;
}

.entry-intro h2 {
  margin-bottom: 8px;
  font-size: 1.5rem;
  line-height: 1.25;
}

.entry-intro p {
  color: var(--muted);
}

.entry-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
}

.entry-option {
  display: grid;
  gap: 8px;
  min-height: 180px;
  padding: 22px;
  color: inherit;
  text-decoration: none;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.entry-option:hover,
.entry-option:focus-visible {
  border-color: var(--accent);
  outline: 3px solid rgba(0, 109, 119, 0.18);
  outline-offset: 0;
}

.entry-option-kicker {
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.entry-option strong {
  font-size: 1.2rem;
  line-height: 1.25;
}

.entry-option span:last-child {
  color: var(--muted);
}

.view-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.view-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.view-nav a:hover,
.view-nav a:focus-visible,
.view-nav a[aria-current="page"] {
  border-color: var(--accent);
  outline: none;
}

.static-page .interactive-figure {
  display: none;
}

@media (max-width: 720px) {
  .landing-overview {
    grid-template-columns: 1fr;
  }

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

  .entry-option {
    min-height: 0;
  }
}
