:root {
  --ink-strong: #142033;
  --ink: #20314a;
  --ink-soft: #5a6778;
  --ink-muted: #7e8794;
  --accent: #8c6239;
  --accent-deep: #6f4d2c;
  --accent-soft: #d8c5ad;
  --paper: #f7f3ea;
  --paper-deep: #efe7d8;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --line: rgba(20, 32, 51, 0.12);
  --line-strong: rgba(20, 32, 51, 0.2);
  --navy-panel: #162235;
  --navy-panel-soft: #23344c;
  --shadow-soft: 0 24px 60px rgba(20, 32, 51, 0.08);
  --shadow-card: 0 18px 40px rgba(20, 32, 51, 0.09);
  --shadow-deep: 0 30px 80px rgba(20, 32, 51, 0.14);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(140, 98, 57, 0.1), transparent 28%),
    radial-gradient(circle at top right, rgba(22, 34, 53, 0.08), transparent 32%),
    linear-gradient(180deg, #fcfaf6 0%, #f5f1e7 48%, #fbf8f1 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(20, 32, 51, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 32, 51, 0.025) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 70%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container.is-max-widescreen {
  max-width: min(1248px, calc(100% - 3rem)) !important;
}

.section {
  padding: 4.5rem 1.5rem;
}

.section-compact {
  padding-top: 1rem;
  padding-bottom: 2.5rem;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.18));
  border-top: 1px solid rgba(20, 32, 51, 0.05);
  border-bottom: 1px solid rgba(20, 32, 51, 0.05);
}

.hero-section {
  padding: 2rem 1.5rem 1rem;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.75rem);
  border: 1px solid rgba(20, 32, 51, 0.1);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(247, 243, 234, 0.76));
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(16px);
  animation: rise-in 700ms ease both;
}

.hero-panel::before {
  content: "";
  position: absolute;
  top: -6rem;
  right: -4rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 98, 57, 0.18), rgba(140, 98, 57, 0));
}

.hero-panel::after {
  content: "";
  position: absolute;
  left: -4rem;
  bottom: -8rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 34, 53, 0.08), rgba(22, 34, 53, 0));
}

.hero-topline,
.publication-links,
.highlight-grid,
.taxonomy-grid,
.footer-layout,
.flow-diagram {
  position: relative;
  z-index: 1;
}

.hero-topline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  text-align: center;
}

.hero-center {
  max-width: 64rem;
  margin: 0 auto;
}

.hero-title-stack {
  text-align: center;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(140, 98, 57, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-copy {
  color: var(--ink-muted);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.project-logo {
  width: 86px;
  height: 86px;
  margin: 0 auto 1.25rem;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(20, 32, 51, 0.15);
}

.hero-kicker {
  margin-bottom: 1.2rem;
  color: var(--accent-deep);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.publication-title {
  margin-bottom: 1.4rem !important;
  color: var(--ink-strong) !important;
  line-height: 0.95 !important;
  text-align: center;
}

.publication-name,
.publication-subtitle,
.title.is-3,
.hero-card-title,
.showcase-title,
.taxonomy-card h3,
.analysis-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.publication-name {
  display: block;
  font-size: clamp(4.2rem, 10vw, 6.4rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.publication-subtitle {
  display: block;
  margin-top: 0.65rem;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 600;
  line-height: 1.04;
}

.publication-subtitle-break {
  margin-top: 0.18rem;
}

.hero-summary {
  max-width: 48rem;
  margin: 0 auto 1.6rem;
  color: var(--ink-soft);
  font-size: 1.16rem;
  line-height: 1.75;
  text-align: center;
}

.publication-authors {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
  font-weight: 600;
}



.author-separator {
  color: var(--ink-muted);
}

.publication-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.publication-affiliation {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 32, 51, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.cta-button.button {
  min-height: 3.25rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border-width: 1px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition);
}

.cta-button.button .icon {
  margin-right: 0.25rem;
}

.cta-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--navy-panel), var(--navy-panel-soft));
  color: #f7f4ee;
  box-shadow: 0 16px 32px rgba(22, 34, 53, 0.2);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(22, 34, 53, 0.24);
  color: #fff;
}

.cta-secondary {
  border-color: rgba(20, 32, 51, 0.13);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink-strong);
}

.cta-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(140, 98, 57, 0.32);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 28px rgba(20, 32, 51, 0.12);
  color: var(--ink-strong);
}

.hero-card,
.highlight-card,
.abstract-shell,
.figure-card,
.analysis-card,
.showcase-card,
.taxonomy-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.hero-card {
  position: relative;
  padding: 1.8rem;
  border-radius: 28px;
  background: linear-gradient(160deg, var(--navy-panel), var(--navy-panel-soft));
  color: rgba(247, 244, 238, 0.88);
}

.hero-card-centered {
  margin-top: 2.2rem;
  text-align: center;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  pointer-events: none;
}

.card-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card-title {
  margin-bottom: 1.2rem;
  color: #ffffff;
  font-size: 2.05rem;
  line-height: 1.05;
  font-weight: 600;
}

.hero-facts {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-card-centered .hero-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.35rem;
}

.hero-facts li {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-centered .hero-facts li {
  padding: 1rem 1rem 1.05rem;
  border-bottom: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.hero-facts li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hero-facts span {
  color: rgba(247, 244, 238, 0.58);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-facts strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}

.hero-card-note {
  margin-top: 1.2rem;
  color: rgba(247, 244, 238, 0.72);
  line-height: 1.65;
}

.highlight-grid,
.taxonomy-grid {
  display: grid;
  gap: 1.15rem;
}

.highlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlight-card {
  padding: 1.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  animation: rise-in 700ms ease both;
}

.highlight-card:nth-child(2) {
  animation-delay: 90ms;
}

.highlight-card:nth-child(3) {
  animation-delay: 180ms;
}

.highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(140, 98, 57, 0.16), rgba(20, 32, 51, 0.08));
  color: var(--accent-deep);
  font-size: 1rem;
}

.highlight-card h2 {
  margin-bottom: 0.55rem;
  color: var(--ink-strong);
  font-size: 1.2rem;
  font-weight: 700;
}

.highlight-card p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.section-heading {
  max-width: 50rem;
  margin-bottom: 2rem;
}

.section-label {
  margin-bottom: 0.4rem;
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.title.is-3 {
  margin-bottom: 0 !important;
  color: var(--ink-strong);
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 600 !important;
  line-height: 1;
}

.flow-inline {
  color: var(--accent);
  font-size: 0.7em;
  vertical-align: middle;
}

.flow-diagram-shell {
  position: relative;
  padding: 1.35rem;
  margin-bottom: 1.8rem;
  border: 1px solid rgba(20, 32, 51, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 243, 234, 0.62));
  box-shadow: var(--shadow-card);
}

.abstract-shell,
.analysis-card,
.showcase-card,
.taxonomy-card,
.figure-card {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

.abstract-shell {
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.content.has-text-justified {
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.85;
}

.content.has-text-justified strong {
  color: var(--ink-strong);
}

.motivation-box {
  margin: 1.8rem 0;
  padding: 1.35rem 1.45rem;
  border: 1px solid rgba(140, 98, 57, 0.15);
  border-left: 5px solid var(--accent);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 250, 243, 0.94), rgba(247, 239, 226, 0.9));
}

.motivation-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  color: var(--accent-deep);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.flow-node {
  min-width: 220px;
  padding: 1.15rem 1.15rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.flow-node-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.7rem;
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  background: rgba(20, 32, 51, 0.06);
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.flow-node strong {
  display: block;
  color: var(--ink-strong);
  font-size: 1.18rem;
  margin-bottom: 0.35rem;
}

.flow-node span {
  color: var(--ink-soft);
  line-height: 1.55;
}

.flow-node-accent {
  background: linear-gradient(135deg, rgba(255, 250, 243, 0.96), rgba(247, 239, 226, 0.9));
  border-color: rgba(140, 98, 57, 0.18);
}

.flow-arrow {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 243, 234, 0.78));
  color: var(--accent-deep);
  box-shadow: 0 10px 24px rgba(20, 32, 51, 0.08);
}

.flow-note {
  margin: 1rem 0 0;
  text-align: center;
  color: var(--ink-soft);
  line-height: 1.65;
}

.figure-card {
  padding: 1rem;
}

.figure-card img {
  border-radius: 20px;
}

.figure-card figcaption {
  padding: 1rem 0.4rem 0.4rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.analysis-card {
  padding: 1.8rem;
}

.component-list {
  display: grid;
  gap: 1rem;
}

.component-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(20, 32, 51, 0.08);
}

.component-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.component-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(140, 98, 57, 0.14), rgba(20, 32, 51, 0.08));
  color: var(--accent-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.analysis-card h3 {
  margin-bottom: 0.2rem;
  color: var(--ink-strong);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.05;
}

.analysis-card p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.attack-stage {
  position: relative;
  padding: 1rem;
}

.browser-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 32, 51, 0.14);
  border-radius: 28px;
  background: #f9fbfe;
  box-shadow: var(--shadow-deep);
}

.browser-toolbar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, #eef3f8, #e7edf5);
  border-bottom: 1px solid rgba(20, 32, 51, 0.1);
}

.toolbar-dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
}

.dot-red {
  background: #dd6158;
}

.dot-amber {
  background: #e6b251;
}

.dot-green {
  background: #4eb47b;
}

.browser-address {
  margin-left: 0.6rem;
  padding: 0.52rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink-muted);
  font-size: 0.88rem;
  flex: 1;
}

.browser-body {
  position: relative;
  min-height: 420px;
  padding: 1.4rem;
  background:
    radial-gradient(circle at top right, rgba(43, 113, 182, 0.08), transparent 30%),
    linear-gradient(180deg, #fbfdff, #f1f5f9);
}

.search-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.search-logo {
  color: #2b71b6;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.search-bar {
  flex: 1;
  height: 2.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(20, 32, 51, 0.08);
}

.result-stack {
  display: grid;
  gap: 0.8rem;
}

.result-card {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(20, 32, 51, 0.06);
}

.result-line {
  height: 0.62rem;
  margin-bottom: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(20, 32, 51, 0.18), rgba(20, 32, 51, 0.05));
}

.result-line:last-child {
  margin-bottom: 0;
}

.result-line.long {
  width: 88%;
}

.result-line.medium {
  width: 72%;
}

.result-line.short {
  width: 54%;
}

.attack-popup {
  position: absolute;
  top: 8.4rem;
  left: 50%;
  width: min(78%, 360px);
  padding: 1.3rem;
  border: 1px solid rgba(159, 77, 70, 0.22);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 48px rgba(33, 49, 74, 0.18);
  transform: translateX(-50%) rotate(-3deg);
  animation: popup-float 6s ease-in-out infinite;
}

.popup-label {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.72rem;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  background: rgba(159, 77, 70, 0.1);
  color: #92453f;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.attack-popup h3 {
  margin-bottom: 0.55rem;
  color: var(--ink-strong);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}

.attack-popup p {
  margin-bottom: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.popup-field {
  height: 2.8rem;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(20, 32, 51, 0.1);
  border-radius: 14px;
  background: linear-gradient(180deg, #fafbfc, #eef3f8);
}

.popup-actions {
  display: flex;
  gap: 0.7rem;
  justify-content: flex-end;
}

.popup-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.popup-ghost {
  background: rgba(20, 32, 51, 0.06);
  color: var(--ink-soft);
}

.popup-danger {
  background: linear-gradient(135deg, #9f4d46, #bf675e);
  color: #fffaf7;
}

.showcase-card {
  padding: 2rem;
}

.showcase-title {
  margin-bottom: 0.8rem;
  color: var(--ink-strong);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.05;
}

.showcase-card p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.risk-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.35rem 0 0;
  list-style: none;
}

.risk-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--ink);
  line-height: 1.65;
}

.risk-list li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
}

.taxonomy-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.taxonomy-card {
  --tone: var(--accent);
  --tone-soft: rgba(140, 98, 57, 0.12);
  padding: 1.7rem;
  border-radius: 28px;
  border-top: 4px solid var(--tone);
  animation: rise-in 700ms ease both;
}

.taxonomy-card:nth-child(2) {
  animation-delay: 80ms;
}

.taxonomy-card:nth-child(3) {
  animation-delay: 160ms;
}

.tone-crimson {
  --tone: #9f4d46;
  --tone-soft: rgba(159, 77, 70, 0.12);
}

.tone-blue {
  --tone: #3c6e9b;
  --tone-soft: rgba(60, 110, 155, 0.12);
}

.tone-olive {
  --tone: #677f4f;
  --tone-soft: rgba(103, 127, 79, 0.12);
}

.taxonomy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tone-soft), rgba(20, 32, 51, 0.05));
  color: var(--tone);
  font-size: 1rem;
}

.taxonomy-label {
  margin-bottom: 0.45rem;
  color: var(--tone);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.taxonomy-card h3 {
  margin-bottom: 0.65rem;
  color: var(--ink-strong);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.02;
}

.taxonomy-card p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.taxonomy-card ul {
  margin-top: 1rem;
  padding-left: 1.15rem;
  color: var(--ink);
}

.taxonomy-card li {
  margin-bottom: 0.7rem;
  line-height: 1.6;
}

.footer {
  padding: 2.8rem 1.5rem 3.6rem;
  background: transparent;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(20, 32, 51, 0.1);
}

.footer-mark {
  margin-bottom: 0.25rem;
  color: var(--ink-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 600;
}

.footer-note,
.footer-meta {
  color: var(--ink-muted);
  line-height: 1.7;
}

.footer a {
  color: var(--accent-deep);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.demo-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.demo-nav-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  height: 100%;
  padding: 1.4rem 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(20, 32, 51, 0.12);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-card);
}

.demo-nav-tag {
  margin: 0;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.demo-nav-card h3 {
  margin: 0;
  color: var(--ink-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.demo-nav-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.demo-nav-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink);
  line-height: 1.6;
}

.demo-nav-button.button {
  margin-top: auto;
  align-self: flex-start;
  border: 1px solid rgba(20, 32, 51, 0.15);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(22, 34, 53, 0.95), rgba(45, 65, 94, 0.94));
  color: #ffffff;
  font-weight: 700;
}

.demo-nav-button.button:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.button:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(140, 98, 57, 0.55);
  outline-offset: 3px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popup-float {
  0%,
  100% {
    transform: translateX(-50%) rotate(-3deg) translateY(0);
  }

  50% {
    transform: translateX(-50%) rotate(-2deg) translateY(-6px);
  }
}

@media screen and (max-width: 1023px) {
  .highlight-grid,
  .taxonomy-grid,
  .demo-nav-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    margin-top: 1.5rem;
  }

  .publication-subtitle {
    max-width: 100%;
  }

  .footer-layout {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .hero-section,
  .section,
  .footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-panel,
  .abstract-shell,
  .figure-card,
  .analysis-card,
  .showcase-card,
  .taxonomy-card {
    border-radius: 22px;
  }

  .hero-topline {
    margin-bottom: 1.4rem;
  }

  .publication-name {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .publication-subtitle {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }

  .hero-summary,
  .content.has-text-justified {
    font-size: 1rem;
  }

  .hero-center {
    max-width: 100%;
  }

  .publication-links {
    flex-direction: column;
    align-items: stretch;
  }

  .publication-links .link-block,
  .publication-links .link-block a {
    width: 100%;
  }

  .flow-diagram {
    gap: 0.7rem;
  }

  .flow-node {
    min-width: 100%;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .browser-body {
    min-height: 390px;
    padding: 1rem;
  }

  .attack-popup {
    top: 8rem;
    width: calc(100% - 2rem);
  }

  .showcase-title,
  .hero-card-title {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 480px) {
  .hero-panel {
    padding: 1.5rem;
  }

  .project-logo {
    width: 72px;
    height: 72px;
  }

  .eyebrow-copy {
    font-size: 0.88rem;
  }

  .browser-toolbar {
    gap: 0.4rem;
  }

  .browser-address {
    font-size: 0.8rem;
  }

  .attack-popup {
    top: 7.4rem;
    padding: 1rem;
  }

  .component-item {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.85rem;
  }

  .component-index,
  .taxonomy-icon,
  .highlight-icon {
    width: 2.6rem;
    height: 2.6rem;
  }
}

@media print {
  body::before,
  .hero-panel::before,
  .hero-panel::after {
    display: none;
  }

  .hero-panel,
  .highlight-card,
  .abstract-shell,
  .figure-card,
  .analysis-card,
  .showcase-card,
  .taxonomy-card {
    box-shadow: none;
    background: #ffffff;
  }
}

