:root {
  --bg: #f3f4f6;
  --paper: #ffffff;
  --paper-2: #fafbfc;
  --ink: #111316;
  --ink-soft: #2c3036;
  --ink-faint: #6a7078;
  --accent: #1b2330;
  --accent-2: #444b57;
  --accent-3: #111316;
  --line: #d9dde3;
  --chip-bg: #f2f4f7;
  --chip-ink: #1b2330;
  --shadow: 0 6px 26px rgba(17, 19, 22, 0.10);
  --glow: 0 6px 26px rgba(17, 19, 22, 0.10);
  --radius: 14px;
}

[data-theme="dark"] {
  --bg: #06070d;
  --paper: #0e111b;
  --paper-2: #141826;
  --ink: #f3f6ff;
  --ink-soft: #aeb8d0;
  --ink-faint: #6d7791;
  --accent: #7c5cff;
  --accent-2: #18e6c8;
  --accent-3: #ff4d6d;
  --line: #20263a;
  --chip-bg: #161b2b;
  --chip-ink: #c5cdff;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.6);
  --glow: 0 0 0 1px rgba(124, 92, 255, 0.25), 0 14px 50px rgba(124, 92, 255, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding: 96px 16px 64px;
}

h1, h2, h3, h4 { font-family: "Sora", sans-serif; line-height: 1.15; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* TOOLBAR */
.toolbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: color-mix(in srgb, var(--paper) 85%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.toolbar-title { font-family: "JetBrains Mono", monospace; font-weight: 600; letter-spacing: 1px; color: var(--ink-soft); }
.toolbar-actions { display: flex; gap: 10px; }
.tb-btn {
  font-family: "Inter", sans-serif;
  font-size: 13px; font-weight: 600;
  padding: 9px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.tb-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.tb-btn.primary { background: var(--accent); color: #fff; border-color: var(--accent); }

/* PAGE / PAPER */
.page {
  max-width: 880px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* TOP STATEMENT */
.top-statement {
  font-style: italic;
  font-weight: 600;
  color: #000;
  text-align: center;
  font-size: 14px;
  padding: 16px 48px;
  border-bottom: 1px solid var(--line);
}

/* HERO */
.hero { position: relative; color: var(--ink); overflow: hidden; border-bottom: 2px solid var(--ink); }
.hero-bg { position: absolute; inset: 0; background: var(--paper); }
.blob { display: none; }
.grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(17,19,22,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(17,19,22,.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 78% 24%, #000 0%, transparent 72%);
}
.hero-inner {
  position: relative;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 22px;
  padding: 42px 48px 46px;
}
.hero-text { display: flex; flex-direction: column; align-items: center; }
.hero-text .tagline { margin-left: auto; margin-right: auto; }
.hero-inner .contact, .hero-inner .social { justify-content: center; }
.avatar {
  flex: 0 0 124px; width: 124px; height: 124px;
  border-radius: 18px;
  background: var(--chip-bg);
  border: 2px solid var(--ink);
  display: grid; place-items: center;
  overflow: hidden;
}
.avatar-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.avatar-initials { width: 100%; height: 100%; place-items: center; font-family: "Sora", sans-serif; font-weight: 800; font-size: 44px; letter-spacing: 1px; color: var(--ink); }

.social { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.social a {
  display: inline-block; font-size: 12px; font-weight: 600; color: var(--ink);
  padding: 6px 13px; border-radius: 999px;
  background: transparent;
  border: 1.5px solid var(--ink);
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.social a:hover { background: var(--ink); color: var(--paper); transform: translateY(-1px); text-decoration: none; }
.hero-text h1 { font-size: 34px; font-weight: 800; letter-spacing: -.5px; color: var(--ink); }
.hero-text .alias { font-weight: 500; color: var(--ink-faint); }
.role { font-size: 16px; font-weight: 700; margin-top: 6px; color: var(--ink-soft); }
.tagline { font-size: 14px; margin-top: 10px; max-width: 52ch; color: var(--ink-soft); }
.contact { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 16px; font-size: 13px; }
.contact li { display: flex; align-items: center; gap: 7px; color: var(--ink-soft); }
.contact a { color: var(--ink); font-weight: 600; }
.contact .ic { color: var(--ink-faint); }
.hero-badges { margin-top: 16px; }
.badge {
  display: inline-block;
  font-size: 11.5px; font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--chip-bg);
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

/* SECTIONS */
.section { padding: 38px 48px; border-top: 1px solid var(--line); }
.section:first-of-type { border-top: none; }
.section-title {
  font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.section-title .num {
  font-family: "JetBrains Mono", monospace;
  color: var(--accent);
  background: var(--chip-bg);
  padding: 4px 9px; border-radius: 8px;
  font-size: 12px;
}

.lead { font-size: 15px; color: var(--ink-soft); max-width: 70ch; }

/* STRENGTH GRID */
.strength-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 22px; }
.strength {
  background: var(--chip-bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 16px;
}
.s-ic { font-size: 22px; color: var(--accent); }
.strength h4 { font-size: 14.5px; margin: 8px 0 4px; }
.strength p { font-size: 12.5px; color: var(--ink-soft); }

/* PROJECTS */
.project {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 18px;
  background: var(--paper);
}
.project:last-child { margin-bottom: 0; }
.project-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.project-head h3 { font-size: 16.5px; color: var(--ink); }
.project-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  padding: 5px 11px; border-radius: 999px;
  background: var(--chip-bg); color: var(--ink);
  border: 1.5px solid var(--ink);
  white-space: nowrap;
}
.project-body { display: flex; flex-direction: column; gap: 16px; margin-top: 14px; }
.project-points { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.project-points li { position: relative; padding-left: 18px; font-size: 13px; color: var(--ink-soft); }
.project-points li::before { content: "▹"; position: absolute; left: 0; color: var(--accent); }
.diagram {
  border: 1.5px dashed var(--line);
  border-radius: 12px;
  /*background: var(--chip-bg);*/
  padding: 10px;
  text-align: center;
  max-width: 820px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.diagram img { width: 100%; height: auto; display: block; border-radius: 8px; }
.diagram figcaption { font-size: 11px; color: var(--ink-faint); margin-top: 8px; font-style: italic; }

/* TIMELINE */
.timeline { position: relative; padding-left: 26px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--accent), var(--accent-2)); }
.tl-item { position: relative; padding-bottom: 22px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-marker { position: absolute; left: -26px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--paper); border: 3px solid var(--accent); }
.tl-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.tl-head h3 { font-size: 16px; }
.tl-date { font-family: "JetBrains Mono", monospace; font-size: 12px; color: var(--accent); white-space: nowrap; }
.tl-org { font-size: 13px; font-weight: 600; color: var(--ink-soft); margin: 2px 0 8px; }
.tl-content ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.tl-content ul li { position: relative; padding-left: 16px; font-size: 13px; color: var(--ink-soft); }
.tl-content ul li::before { content: "—"; position: absolute; left: 0; color: var(--ink-faint); }

/* EDUCATION */
.edu-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.edu-card { border: 1px solid var(--line); border-radius: 14px; padding: 18px; 
  
  /*background: var(--chip-bg); */}
.edu-top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.edu-top h3 { font-size: 15px; }
.edu-date { font-family: "JetBrains Mono", monospace; font-size: 12px; color: var(--accent); }
.edu-org { font-size: 13px; font-weight: 600; color: var(--ink-soft); margin: 4px 0 6px; }
.edu-note { font-size: 12.5px; color: var(--ink-faint); }
.edu-img { display: block; width: 100%; max-width: 400px; margin: 12px auto 0; border-radius: 8px; border: 1px solid var(--line); }

/* PUBLICATIONS */
.pub-list { list-style: none; counter-reset: pub; display: flex; flex-direction: column; gap: 12px; }
.pub-list li { position: relative; padding-left: 40px; font-size: 13.5px; color: var(--ink); }
.pub-list li::before {
  counter-increment: pub; content: counter(pub, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 600;
  color: var(--accent); background: var(--chip-bg);
  padding: 3px 8px; border-radius: 7px;
}
.pub-venue { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--accent-2); margin-bottom: 2px; }
.pub-venue a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pub-venue a:hover { color: var(--accent); }

/* AI EXPOSURE + HUMAN */
.ai-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.ai-card { border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 12px; padding: 16px; }
.ai-card h4 { font-size: 14px; color: var(--accent); }
.ai-card p { font-size: 12.5px; color: var(--ink-soft); margin-top: 5px; }

.human-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.human-card { text-align: center; border: 1px solid var(--line); border-radius: 12px; padding: 16px 12px; background: var(--chip-bg); }
.human-card h4 { font-size: 13px; color: var(--ink-soft); }
.human-card p { font-size: 13px; font-weight: 600; margin-top: 6px; }

/* SKILLS */
.skill-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 28px; }
.skill-group h4 { font-size: 13px; color: var(--ink-soft); margin-bottom: 10px; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip {
  font-size: 12px; font-weight: 600;
  padding: 6px 12px; border-radius: 999px;
  background: var(--chip-bg); color: var(--chip-ink);
  border: 1px solid var(--line);
}

/* AI DISCLOSURE */
.ai-note {
  display: flex; align-items: center; gap: 14px;
  margin: 0 48px;
  padding: 16px 20px;
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  background: var(--chip-bg);
}
.ai-note-mark { font-size: 20px; color: var(--ink); flex: 0 0 auto; }
.ai-note p { font-size: 13px; font-weight: 600; color: var(--ink); margin: 0; }

/* FOOTER */
.cv-footer {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding: 22px 48px;
  border-top: 1px solid var(--line);
  font-size: 12px; color: var(--ink-faint);
  font-family: "JetBrains Mono", monospace;
}

[data-theme="dark"] .top-statement { color: var(--ink); border-bottom-color: var(--line); }

/* DARK TOGGLE — restore dramatic hero */
[data-theme="dark"] .hero { color: #fff; border-bottom: 1px solid var(--line); }
[data-theme="dark"] .hero-bg { background: radial-gradient(120% 140% at 80% 0%, #2a1466 0%, #120a2e 45%, #06070d 100%); }
[data-theme="dark"] .blob { display: block; position: absolute; border-radius: 50%; filter: blur(60px); opacity: .6; }
[data-theme="dark"] .blob-a { width: 380px; height: 380px; background: #7c5cff; top: -130px; right: -70px; }
[data-theme="dark"] .blob-b { width: 320px; height: 320px; background: #18e6c8; bottom: -150px; left: -70px; opacity: .4; }
[data-theme="dark"] .grid-lines {
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
}
[data-theme="dark"] .hero-text h1 { color: #fff; }
[data-theme="dark"] .hero-text .alias { color: rgba(255,255,255,.7); }
[data-theme="dark"] .role { color: #dbe6ff; }
[data-theme="dark"] .tagline { color: rgba(255,255,255,.85); }
[data-theme="dark"] .contact li { color: rgba(255,255,255,.92); }
[data-theme="dark"] .contact a { color: #fff; }
[data-theme="dark"] .contact .ic { color: rgba(255,255,255,.7); }
[data-theme="dark"] .avatar { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.4); }
[data-theme="dark"] .avatar-initials { color: #fff; }
[data-theme="dark"] .social a { color: #fff; border-color: rgba(255,255,255,.28); }
[data-theme="dark"] .social a:hover { background: rgba(255,255,255,.22); color: #fff; }
[data-theme="dark"] .badge { color: #fff; background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.3); }
[data-theme="dark"] .project-tag { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; }

/* LIGHTBOX */
.zoomable { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  background: rgba(8, 10, 16, 0.88);
  backdrop-filter: blur(4px);
}
.lightbox img {
  max-width: 95vw; max-height: 90vh;
  width: auto; height: auto;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}
.lightbox-close {
  position: absolute; top: 18px; right: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  color: #fff; font-size: 24px; line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .15s ease, transform .15s ease;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.28); transform: scale(1.06); }

/* RESPONSIVE */
@media (max-width: 720px) {
  body { padding-top: 88px; }
  .top-statement { padding: 14px 24px; }
  .hero-inner { flex-direction: column; text-align: center; padding: 36px 24px; }
  .contact { justify-content: center; }
  .section { padding: 30px 24px; }
  .ai-note { margin: 0 24px; }
  .strength-grid, .project-body, .edu-grid, .ai-grid, .human-grid, .skill-cols { grid-template-columns: 1fr; }
}

/* PRINT — A4 multipage */
@page { size: A4; margin: 12mm; }

@media print {
  :root, [data-theme="dark"] {
    --bg: #ffffff; --paper: #ffffff; --paper-2: #ffffff;
    --ink: #000000; --ink-soft: #1a1a1a; --ink-faint: #555555;
    --accent: #000000; --accent-2: #333333; --accent-3: #000000;
    --line: #cccccc; --chip-bg: #f4f4f4; --chip-ink: #000000;
  }
  [data-theme="dark"] .hero-bg, .hero-bg { background: #ffffff !important; }
  [data-theme="dark"] .blob, .blob { display: none !important; }
  [data-theme="dark"] .hero, .hero { color: #000 !important; border-bottom: 2px solid #000 !important; }
  [data-theme="dark"] .hero-text h1, [data-theme="dark"] .role,
  [data-theme="dark"] .tagline, [data-theme="dark"] .contact li,
  [data-theme="dark"] .contact a, [data-theme="dark"] .avatar-initials { color: #000 !important; }
  .grid-lines { display: none !important; }

  .no-print { display: none !important; }
  html, body { background: #fff; }
  body { padding: 0; }
  .page {
    max-width: none; width: auto;
    box-shadow: none; border-radius: 0;
    overflow: visible;
  }
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }

  .top-statement { color: #000 !important; padding: 10px 8px; }
  .hero { border-radius: 0; }
  .hero-inner { padding: 18px 8px; }
  .section { padding: 16px 8px; }
  .ai-note { margin: 8px; break-inside: avoid; }
  .cv-footer { padding: 12px 8px; }

  h1, h2, h3, h4, .section-title { break-after: avoid; }
  .project, .tl-item, .edu-card, .ai-card, .strength, .human-card, .pub-list li { break-inside: avoid; }
  .projects .project { page-break-inside: avoid; }

  .hero-text h1 { font-size: 28px; }
}

/* GLOBAL TYPE SCALE — bump everything a little larger */
.top-statement { font-size: 16px; }
.hero-text h1 { font-size: 37px; }
.role { font-size: 18px; }
.tagline { font-size: 16px; }
.contact { font-size: 14.5px; }
.badge { font-size: 13px; }
.social a { font-size: 13.5px; }
.section-title { font-size: 14px; }
.section-title .num { font-size: 13px; }
.lead { font-size: 17px; }
.strength h4 { font-size: 16px; }
.strength p { font-size: 14px; }
.project-head h3 { font-size: 18.5px; }
.project-tag { font-size: 12.5px; }
.project-points li { font-size: 15px; }
.diagram figcaption { font-size: 12.5px; }
.tl-head h3 { font-size: 18px; }
.tl-date { font-size: 13.5px; }
.tl-org { font-size: 14.5px; }
.tl-content ul li { font-size: 15px; }
.edu-top h3 { font-size: 17px; }
.edu-date { font-size: 13.5px; }
.edu-org { font-size: 14.5px; }
.edu-note { font-size: 14px; }
.pub-list li { font-size: 15.5px; }
.pub-venue { font-size: 12.5px; }
.ai-card h4 { font-size: 15.5px; }
.ai-card p { font-size: 14px; }
.human-card h4 { font-size: 14.5px; }
.human-card p { font-size: 15px; }
.skill-group h4 { font-size: 14.5px; }
.chip { font-size: 13.5px; }
.cv-footer { font-size: 13px; }
.ai-note p { font-size: 15px; }

/* PRINT COMPACTION — must be last to override the global type scale */
@media print {
  @page { size: A4; margin: 10mm; }

  .top-statement { font-size: 10.5px; padding: 6px 8px; }
  .hero-text h1 { font-size: 22px; }
  .hero-text .alias { font-size: 16px; }
  .role { font-size: 12px; margin-top: 3px; }
  .tagline { font-size: 10.5px; margin-top: 5px; }
  .contact { font-size: 10px; gap: 4px 14px; margin-top: 8px; }
  .social { margin-top: 8px; gap: 5px; }
  .social a { font-size: 9.5px; padding: 3px 9px; }
  .badge { font-size: 9.5px; padding: 4px 9px; }

  .section-title { font-size: 11px; letter-spacing: 1.5px; margin-bottom: 9px; }
  .section-title .num { font-size: 10px; padding: 3px 7px; }
  .lead { font-size: 11px; }
  .strength h4 { font-size: 11px; }
  .strength p { font-size: 10px; }
  .project-head h3 { font-size: 13px; }
  .project-tag { font-size: 9.5px; padding: 3px 9px; }
  .project-points li { font-size: 10.5px; padding-left: 15px; }
  .diagram figcaption { font-size: 9.5px; }
  .tl-head h3 { font-size: 12.5px; }
  .tl-date { font-size: 10px; }
  .tl-org { font-size: 10.5px; margin: 1px 0 5px; }
  .tl-content ul li { font-size: 10.5px; }
  .edu-top h3 { font-size: 12.5px; }
  .edu-date { font-size: 10px; }
  .edu-org { font-size: 10.5px; margin: 3px 0 4px; }
  .edu-note { font-size: 10.5px; }
  .pub-list li { font-size: 10.5px; padding-left: 34px; }
  .pub-venue { font-size: 9px; }
  .cv-footer { font-size: 9.5px; }

  body { padding: 0; }
  .page { box-shadow: none; }
  .hero-inner { padding: 12px 10px; gap: 12px; }
  .avatar { flex: 0 0 78px; width: 78px; height: 78px; border-radius: 12px; }
  .avatar-initials { font-size: 30px; }
  .section { padding: 9px 12px; }
  .summary .strength-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 9px; }
  .strength { padding: 9px 10px; border-radius: 8px; }
  .project { padding: 9px 12px; margin-bottom: 7px; border-radius: 8px; }
  .project-body { gap: 7px; margin-top: 8px; }
  .project-points { gap: 4px; }
  .timeline { padding-left: 20px; }
  .timeline::before { left: 6px; }
  .tl-item { padding-bottom: 9px; }
  .tl-marker { left: -20px; width: 12px; height: 12px; }
  .tl-content ul { gap: 3px; }
  .edu-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .edu-card { padding: 11px; border-radius: 8px; }
  .pub-list { gap: 7px; }

  .diagram { max-width: 100%; padding: 6px; }
  .edu-img { max-width: 250px; margin-top: 7px; }

  /* Chrome ignores break-inside:avoid on flex/grid items — flatten to blocks for reliable pagination */
  .projects, .project-body, .project-points,
  .timeline, .tl-content ul,
  .strength-grid, .summary .strength-grid,
  .edu-grid, .pub-list {
    display: block !important;
  }
  .strength, .edu-card { margin-bottom: 10px; }
  .project-points li, .tl-content ul li, .pub-list li { margin-bottom: 4px; }
  .diagram { margin: 8px auto 0; }

  /* keep coherent blocks intact and never split media */
  h2, h3, h4, .section-title { break-after: avoid; page-break-after: avoid; }
  .project-head, .tl-head, .edu-top { break-after: avoid; page-break-after: avoid; }
  .project, .tl-item, .edu-card, .pub-list li, .strength,
  figure, .diagram, .edu-img, img {
    break-inside: avoid; page-break-inside: avoid;
  }
  .section { break-inside: auto; }
  p, li { orphans: 3; widows: 3; }
}
