:root {
  --ink: #eef6ff;
  --muted: #9cb0c7;
  --navy-950: #030712;
  --navy-900: #07101f;
  --navy-850: #0a1528;
  --navy-800: #0d1b31;
  --line: rgba(117, 162, 208, 0.2);
  --gold: #ffb51b;
  --gold-soft: #ffd977;
  --cyan: #44d6ff;
  --cyan-soft: rgba(68, 214, 255, 0.14);
  --danger: #ff785f;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% -10%, rgba(27, 116, 185, 0.22), transparent 34rem),
    radial-gradient(circle at 90% 10%, rgba(255, 181, 27, 0.12), transparent 28rem),
    var(--navy-950);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #06101e;
  background: #fff;
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 34px), var(--container));
  margin-inline: auto;
}

.topbar {
  color: #c6d5e6;
  background: #02050c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar .container {
  display: flex;
  min-height: 35px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status::before {
  width: 8px;
  height: 8px;
  background: #52e28a;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(82, 226, 138, 0.75);
  content: "";
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(3, 7, 18, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 208px;
  height: auto;
}

.main-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 6px;
}

.main-nav > a {
  padding: 10px 12px;
  color: #b8c9dc;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav > a:hover,
.main-nav > a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #101621;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 10px 28px rgba(255, 181, 27, 0.2);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 9px;
  content: "";
}

.breadcrumbs {
  padding: 18px 0 0;
  color: #879cb5;
  font-size: 13px;
}

.breadcrumbs ol {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 8px;
  color: #53667c;
  content: "/";
}

.breadcrumbs a:hover {
  color: var(--cyan);
}

.hero {
  padding: 54px 0 46px;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.7fr);
  gap: 50px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  align-items: center;
  gap: 10px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  content: "";
}

h1,
h2,
h3 {
  margin-top: 0;
  color: #fff;
  line-height: 1.16;
}

h1 {
  max-width: 800px;
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 66px);
  letter-spacing: -0.048em;
}

.lead {
  max-width: 720px;
  margin: 0;
  color: #b9cadc;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 11px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(4, 10, 21, 0.08), rgba(4, 10, 21, 0.88)),
    url("../img/suhujon.png") center 28% / cover no-repeat;
  border: 1px solid rgba(255, 181, 27, 0.32);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-panel::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(68, 214, 255, 0.16);
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.hero-panel-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px;
  background: rgba(5, 13, 26, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.hero-panel-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-soft);
}

.hero-panel-card p {
  margin: 0;
  color: #c1d1e1;
  font-size: 14px;
}

.trust-row {
  display: grid;
  margin-top: 4px;
  padding: 18px 0;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  padding: 5px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: #fff;
  font-size: 15px;
}

.trust-item span {
  margin-top: 3px;
  color: #7f95ad;
  font-size: 12px;
}

.content-section {
  padding: 64px 0;
}

.content-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 42px;
}

.article {
  min-width: 0;
}

.article h2 {
  margin: 52px 0 16px;
  font-size: clamp(27px, 3vw, 38px);
  letter-spacing: -0.025em;
}

.article h2:first-child {
  margin-top: 0;
}

.article h3 {
  margin: 34px 0 12px;
  font-size: 22px;
}

.article p,
.article li {
  color: #b9cadb;
  font-size: 16px;
}

.article p {
  margin: 0 0 20px;
}

.article a:not(.btn) {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-color: rgba(68, 214, 255, 0.36);
  text-underline-offset: 4px;
}

.article ul,
.article ol {
  margin: 0 0 24px;
  padding-left: 23px;
}

.article li {
  margin-bottom: 9px;
}

.callout {
  margin: 30px 0;
  padding: 22px 24px;
  background: linear-gradient(135deg, rgba(68, 214, 255, 0.1), rgba(255, 181, 27, 0.07));
  border: 1px solid rgba(68, 214, 255, 0.25);
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius-sm);
}

.callout strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
}

.callout p {
  margin: 0;
}

.info-grid {
  display: grid;
  margin: 26px 0 34px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.info-card {
  padding: 22px;
  background: rgba(13, 27, 49, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.info-card .number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  color: #08101c;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-radius: 11px;
  place-items: center;
  font-size: 14px;
  font-weight: 900;
}

.info-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.info-card p {
  margin: 0;
  font-size: 14px;
}

.sidebar {
  position: sticky;
  top: 112px;
}

.side-card {
  margin-bottom: 16px;
  padding: 22px;
  background: rgba(10, 21, 40, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.side-card h2 {
  margin-bottom: 14px;
  font-size: 17px;
}

.toc {
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc li + li {
  margin-top: 9px;
}

.toc a {
  color: #98acc2;
  font-size: 14px;
}

.toc a:hover {
  color: var(--cyan);
}

.side-note {
  margin: 0;
  color: #8fa4bc;
  font-size: 13px;
}

.faq-list {
  margin-top: 24px;
}

.faq-item {
  overflow: hidden;
  margin-bottom: 11px;
  background: rgba(13, 27, 49, 0.68);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 58px;
  padding: 15px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}

.faq-question::after {
  flex: 0 0 auto;
  color: var(--gold);
  content: "+";
  font-size: 22px;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  padding: 0 18px 18px;
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer p {
  margin: 0;
  color: #aebfd0;
}

.related-section {
  padding: 0 0 70px;
}

.section-heading {
  display: flex;
  margin-bottom: 22px;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(27px, 3vw, 38px);
}

.section-heading p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.related-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 24px;
  background:
    linear-gradient(150deg, rgba(68, 214, 255, 0.09), transparent 50%),
    rgba(10, 21, 40, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.related-card:hover {
  border-color: rgba(255, 181, 27, 0.5);
  transform: translateY(-4px);
}

.related-card small {
  color: var(--gold);
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-card h3 {
  margin: 14px 0 10px;
  font-size: 22px;
}

.related-card p {
  margin: 0;
  color: #91a5bc;
  font-size: 14px;
}

.related-card .arrow {
  position: absolute;
  right: 22px;
  bottom: 20px;
  color: var(--cyan);
  font-size: 22px;
}

.site-footer {
  background: #02050c;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  padding: 50px 0 36px;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}

.footer-brand img {
  width: 200px;
}

.footer-brand p {
  max-width: 390px;
  margin: 18px 0 0;
  color: #8297ae;
  font-size: 14px;
}

.footer-column h2 {
  margin-bottom: 14px;
  font-size: 15px;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li + li {
  margin-top: 8px;
}

.footer-column a {
  color: #8297ae;
  font-size: 14px;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #62748a;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1000px) {
  .main-nav,
  .header-actions .btn-secondary {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav.is-open {
    position: fixed;
    inset: 118px 17px auto;
    display: grid;
    margin: 0;
    padding: 18px;
    background: rgba(5, 12, 24, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open > a {
    padding: 13px 14px;
  }

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

  .hero-panel {
    min-height: 420px;
  }

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

  .sidebar {
    position: static;
    order: -1;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .topbar .container {
    justify-content: center;
  }

  .topbar .topbar-date {
    display: none;
  }

  .header-inner {
    min-height: 70px;
    gap: 10px;
  }

  .brand img {
    width: 156px;
  }

  .header-actions .btn-primary {
    min-height: 40px;
    padding: 0 13px;
  }

  .main-nav.is-open {
    inset: 105px 12px auto;
  }

  .breadcrumbs {
    padding-top: 14px;
  }

  .hero {
    padding: 35px 0 32px;
  }

  h1 {
    font-size: 40px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-panel {
    min-height: 350px;
  }

  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(n + 3) {
    border-bottom: 0;
  }

  .content-section {
    padding: 46px 0;
  }

  .info-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

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

  .footer-bottom {
    padding: 18px 0;
    align-items: start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Catatan Suhu Jon — visitor-first update hub */
.notes-page [hidden] {
  display: none !important;
}

.notes-page .notes-update-stamp {
  display: flex;
  margin-top: 25px;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 12px;
  color: #71879f;
  font-size: 12px;
}

.notes-page .notes-update-stamp strong {
  color: #b8c9dc;
}

.notes-page .notes-hero-panel {
  min-height: 430px;
  background:
    linear-gradient(180deg, rgba(4, 10, 21, 0.03), rgba(4, 10, 21, 0.94)),
    url("../img/suhujon.png") center 20% / cover no-repeat;
}

.notes-page .notes-latest-card {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px;
  background: rgba(5, 13, 26, 0.91);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  backdrop-filter: blur(14px);
}

.notes-page .notes-latest-head {
  display: flex;
  margin-bottom: 11px;
  align-items: center;
  justify-content: space-between;
  color: #8398af;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.notes-page .notes-latest-card > strong {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
}

.notes-page .notes-latest-card p {
  margin: 0 0 12px;
  color: #aebfd1;
  font-size: 13px;
}

.notes-page .notes-latest-card a {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
}

.notes-page .notes-snapshot {
  display: grid;
  padding: 19px 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.notes-page .notes-snapshot article {
  display: flex;
  padding: 9px 22px;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line);
}

.notes-page .notes-snapshot article:last-child {
  border-right: 0;
}

.notes-page .notes-snapshot article > span {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  color: #07101f;
  background: linear-gradient(135deg, var(--cyan), #84e8ff);
  border-radius: 11px;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

.notes-page .notes-snapshot strong {
  display: block;
  font-size: 14px;
}

.notes-page .notes-snapshot p {
  margin: 3px 0 0;
  color: #7f94ab;
  font-size: 12px;
  line-height: 1.55;
}

.notes-page .notes-feed-section,
.notes-page .notes-legend-section,
.notes-page .notes-help-section,
.notes-page .notes-faq-section {
  padding: 76px 0;
}

.notes-page .section-heading {
  margin-bottom: 26px;
}

.notes-page .section-heading h2,
.notes-page .notes-help-section h2,
.notes-page .notes-archive-section h2,
.notes-page .notes-faq-section h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 50px);
  letter-spacing: -0.04em;
}

.notes-page .notes-filter {
  display: flex;
  margin: 0 0 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.notes-page .notes-filter button,
.notes-page .notes-tools button {
  min-height: 42px;
  padding: 0 15px;
  color: #aebfd1;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 11px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.notes-page .notes-filter button:hover,
.notes-page .notes-filter button:focus-visible,
.notes-page .notes-filter button.is-selected {
  color: #08101c;
  background: var(--cyan);
  border-color: var(--cyan);
}

.notes-page .notes-result-count {
  margin: 0 0 18px;
  color: #71879f;
  font-size: 12px;
}

.notes-page .notes-feed {
  display: grid;
  gap: 14px;
}

.notes-page .notes-entry {
  position: relative;
  display: grid;
  padding: 24px;
  align-items: start;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(68, 214, 255, 0.07), transparent 38%),
    rgba(9, 20, 38, 0.8);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.notes-page .notes-entry-meta {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
  color: #7e94ad;
  font-size: 12px;
  font-weight: 750;
}

.notes-page .notes-badge {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  line-height: 1.35;
}

.notes-page .notes-badge-new {
  color: #072313;
  background: #54e38c;
}

.notes-page .notes-badge-active {
  color: #d6ffdf;
  background: rgba(84, 227, 140, 0.13);
  border: 1px solid rgba(84, 227, 140, 0.26);
}

.notes-page .notes-badge-info {
  color: #cef6ff;
  background: rgba(68, 214, 255, 0.12);
  border: 1px solid rgba(68, 214, 255, 0.25);
}

.notes-page .notes-entry-content h3 {
  margin: 0 0 9px;
  font-size: 23px;
}

.notes-page .notes-entry-content > p {
  margin: 0;
  color: #9fb2c9;
}

.notes-page .notes-details {
  margin-top: 18px;
  background: rgba(2, 8, 18, 0.45);
  border: 1px solid rgba(126, 166, 207, 0.16);
  border-radius: 14px;
}

.notes-page .notes-details summary {
  padding: 13px 15px;
  color: var(--cyan);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  list-style-position: inside;
}

.notes-page .notes-details[open] summary {
  border-bottom: 1px solid rgba(126, 166, 207, 0.16);
}

.notes-page .notes-detail-grid {
  display: grid;
  padding: 17px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.notes-page .notes-detail-grid section {
  padding: 15px;
  background: rgba(13, 27, 49, 0.62);
  border-radius: 12px;
}

.notes-page .notes-detail-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.notes-page .notes-detail-grid p {
  margin: 0;
  color: #9fb2c9;
  font-size: 13px;
}

.notes-page .notes-details ul {
  margin: 0;
  padding: 0 34px 18px 48px;
  color: #9fb2c9;
  font-size: 13px;
}

.notes-page .notes-details li + li {
  margin-top: 5px;
}

.notes-page .notes-legend-section,
.notes-page .notes-faq-section {
  background: rgba(6, 14, 28, 0.72);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.notes-page .notes-label-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}

.notes-page .notes-label-grid article {
  padding: 22px;
  background: rgba(13, 27, 49, 0.7);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.notes-page .notes-label-grid strong {
  display: block;
  margin: 14px 0 6px;
  font-size: 16px;
}

.notes-page .notes-label-grid p {
  margin: 0;
  color: #8fa3ba;
  font-size: 13px;
}

.notes-page .notes-legend-dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 14px currentColor;
}

.notes-page .notes-legend-dot.is-new {
  color: #54e38c;
  background: #54e38c;
}

.notes-page .notes-legend-dot.is-active {
  color: var(--cyan);
  background: var(--cyan);
}

.notes-page .notes-legend-dot.is-info {
  color: var(--gold);
  background: var(--gold);
}

.notes-page .notes-legend-dot.is-archive {
  color: #60758d;
  background: #60758d;
}

.notes-page .notes-help-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1fr);
  gap: 54px;
}

.notes-page .notes-help-grid > div > p,
.notes-page .notes-faq-layout > div:first-child > p,
.notes-page .notes-archive-card p {
  color: var(--muted);
}

.notes-page .notes-tools {
  display: flex;
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 9px;
}

.notes-page .notes-tools button:hover,
.notes-page .notes-tools button:focus-visible {
  color: #fff;
  border-color: rgba(68, 214, 255, 0.5);
}

.notes-page .notes-copy-feedback {
  min-height: 24px;
  margin: 8px 0 0;
  color: #8fdda9 !important;
  font-size: 12px;
}

.notes-page .notes-checklist {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 11px;
}

.notes-page .notes-checklist li {
  display: flex;
  padding: 17px;
  align-items: center;
  gap: 15px;
  background: rgba(9, 20, 38, 0.78);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.notes-page .notes-checklist li > span {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  color: #07101f;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-radius: 11px;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
}

.notes-page .notes-checklist strong {
  display: block;
  font-size: 14px;
}

.notes-page .notes-checklist p {
  margin: 3px 0 0;
  color: #8398af;
  font-size: 12px;
}

.notes-page .notes-archive-section {
  padding: 0 0 76px;
}

.notes-page .notes-archive-card {
  display: flex;
  padding: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background:
    linear-gradient(120deg, rgba(68, 214, 255, 0.1), transparent 40%),
    rgba(9, 20, 38, 0.8);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.notes-page .notes-archive-card p {
  max-width: 690px;
  margin-bottom: 0;
}

.notes-page .notes-archive-stat {
  display: flex;
  min-width: 170px;
  align-items: center;
  flex-direction: column;
}

.notes-page .notes-archive-stat strong {
  color: var(--cyan);
  font-size: 58px;
  line-height: 1;
}

.notes-page .notes-archive-stat span {
  margin-top: 5px;
  color: #8297ae;
  font-size: 12px;
}

.notes-page .notes-faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 52px;
}

.notes-page .notes-faq-list {
  display: grid;
  gap: 10px;
}

.notes-page .notes-faq-list details {
  overflow: hidden;
  background: rgba(13, 27, 49, 0.66);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.notes-page .notes-faq-list summary {
  padding: 17px 19px;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.notes-page .notes-faq-list details[open] summary {
  color: var(--cyan);
  border-bottom: 1px solid var(--line);
}

.notes-page .notes-faq-list p {
  margin: 0;
  padding: 17px 19px;
  color: #9fb2c9;
  font-size: 14px;
}

.notes-page .notes-related-section {
  padding: 76px 0;
}

@media (max-width: 1000px) {
  .notes-page .notes-detail-grid,
  .notes-page .notes-label-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .notes-page .notes-help-grid,
  .notes-page .notes-faq-layout {
    grid-template-columns: 1fr;
  }

  .notes-page .notes-snapshot {
    grid-template-columns: 1fr;
  }

  .notes-page .notes-snapshot article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .notes-page .notes-snapshot article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .notes-page .topbar-date {
    display: none;
  }

  .notes-page .notes-hero-panel {
    min-height: 360px;
  }

  .notes-page .notes-entry {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .notes-page .notes-entry-meta {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .notes-page .notes-detail-grid,
  .notes-page .notes-label-grid {
    grid-template-columns: 1fr;
  }

  .notes-page .notes-archive-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .notes-page .notes-archive-stat {
    align-items: flex-start;
  }

  .notes-page .notes-feed-section,
  .notes-page .notes-legend-section,
  .notes-page .notes-help-section,
  .notes-page .notes-faq-section,
  .notes-page .notes-related-section {
    padding: 52px 0;
  }

  .notes-page .notes-archive-section {
    padding-bottom: 52px;
  }
}

@media print {
  .notes-page .topbar,
  .notes-page .site-header,
  .notes-page .notes-hero-panel,
  .notes-page .notes-filter,
  .notes-page .notes-tools,
  .notes-page .notes-related-section,
  .notes-page .site-footer {
    display: none !important;
  }

  .notes-page {
    color: #111;
    background: #fff;
  }

  .notes-page h1,
  .notes-page h2,
  .notes-page h3 {
    color: #111;
  }

  .notes-page .hero,
  .notes-page .notes-feed-section,
  .notes-page .notes-legend-section,
  .notes-page .notes-help-section,
  .notes-page .notes-faq-section {
    padding: 24px 0;
  }

  .notes-page .notes-entry,
  .notes-page .notes-label-grid article,
  .notes-page .notes-checklist li,
  .notes-page .notes-faq-list details {
    color: #111;
    background: #fff;
    border-color: #bbb;
    break-inside: avoid;
  }

  .notes-page .notes-entry p,
  .notes-page .notes-detail-grid p,
  .notes-page .notes-label-grid p,
  .notes-page .notes-checklist p,
  .notes-page .notes-faq-list p,
  .notes-page .section-heading > p,
  .notes-page .lead {
    color: #333;
  }
}

/* Catatan Suhu Jon — journal sections revision */
.notes-journal-page code {
  padding: 2px 6px;
  color: #d9f8ff;
  background: rgba(68, 214, 255, 0.1);
  border: 1px solid rgba(68, 214, 255, 0.18);
  border-radius: 6px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.9em;
  overflow-wrap: anywhere;
}

.notes-journal-page .notes-journal-hero h1 {
  max-width: 760px;
}

.notes-journal-page .notes-journal-panel {
  background:
    linear-gradient(180deg, rgba(4, 10, 21, 0.02), rgba(4, 10, 21, 0.95)),
    url("../img/suhujon.png") center 18% / cover no-repeat;
}

.notes-journal-page .notes-section-nav {
  position: sticky;
  z-index: 70;
  top: 82px;
  background: rgba(5, 12, 24, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.notes-journal-page .notes-section-nav .container {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.notes-journal-page .notes-section-nav a {
  display: flex;
  min-height: 58px;
  padding: 8px 14px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #8fa4bc;
  border-right: 1px solid rgba(117, 162, 208, 0.13);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  transition: color 0.18s ease, background 0.18s ease;
}

.notes-journal-page .notes-section-nav a:first-child {
  border-left: 1px solid rgba(117, 162, 208, 0.13);
}

.notes-journal-page .notes-section-nav a:hover,
.notes-journal-page .notes-section-nav a:focus-visible {
  color: #fff;
  background: rgba(68, 214, 255, 0.08);
}

.notes-journal-page .notes-section-nav a span {
  color: var(--cyan);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.notes-journal-page .notes-feature-timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.notes-journal-page .notes-feature-timeline::before {
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 170px;
  width: 1px;
  background: linear-gradient(var(--cyan), rgba(68, 214, 255, 0.08));
  content: "";
}

.notes-journal-page .notes-feature-card {
  position: relative;
  display: grid;
  padding: 26px;
  grid-template-columns: 125px minmax(0, 1fr);
  gap: 50px;
  background:
    linear-gradient(135deg, rgba(255, 181, 27, 0.06), transparent 38%),
    rgba(9, 20, 38, 0.82);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.notes-journal-page .notes-feature-card.is-latest {
  background:
    linear-gradient(135deg, rgba(68, 214, 255, 0.12), transparent 42%),
    rgba(9, 20, 38, 0.9);
  border-color: rgba(68, 214, 255, 0.35);
  box-shadow: 0 20px 65px rgba(0, 0, 0, 0.22);
}

.notes-journal-page .notes-feature-card::before {
  position: absolute;
  z-index: 1;
  top: 34px;
  left: 164px;
  width: 13px;
  height: 13px;
  background: var(--navy-950);
  border: 3px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 181, 27, 0.6);
  content: "";
}

.notes-journal-page .notes-feature-card.is-latest::before {
  border-color: var(--cyan);
  box-shadow: 0 0 18px rgba(68, 214, 255, 0.72);
}

.notes-journal-page .notes-feature-order span,
.notes-journal-page .notes-feature-order strong {
  display: block;
}

.notes-journal-page .notes-feature-order span {
  margin-bottom: 7px;
  color: #758ba4;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.notes-journal-page .notes-feature-order strong {
  color: var(--gold-soft);
  font-size: 20px;
}

.notes-journal-page .notes-feature-card.is-latest .notes-feature-order strong {
  color: var(--cyan);
}

.notes-journal-page .notes-feature-copy h3 {
  margin: 11px 0 9px;
  font-size: clamp(23px, 3vw, 31px);
}

.notes-journal-page .notes-feature-copy > p {
  max-width: 900px;
  margin: 0;
  color: #a5b8cd;
}

.notes-journal-page .notes-entry-meta-inline {
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.notes-journal-page .notes-fact-row {
  display: grid;
  margin-top: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.notes-journal-page .notes-fact-row section {
  padding: 16px;
  background: rgba(3, 9, 19, 0.46);
  border: 1px solid rgba(117, 162, 208, 0.15);
  border-radius: 13px;
}

.notes-journal-page .notes-fact-row section > span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.notes-journal-page .notes-fact-row p {
  margin: 0;
  color: #8fa4bb;
  font-size: 12px;
}

.notes-journal-page .notes-update-board {
  display: grid;
  margin-top: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.notes-journal-page .notes-update-board > article {
  display: grid;
  padding: 19px;
  align-items: start;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 14px;
  background: rgba(9, 20, 38, 0.68);
  border: 1px solid var(--line);
  border-radius: 17px;
}

.notes-journal-page .notes-update-icon {
  display: grid;
  width: 44px;
  height: 44px;
  color: #07101f;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-radius: 12px;
  place-items: center;
  font-size: 10px;
  font-weight: 950;
}

.notes-journal-page .notes-update-board small {
  color: #778da5;
  font-weight: 800;
}

.notes-journal-page .notes-update-board h3 {
  margin: 2px 0 5px;
  font-size: 16px;
}

.notes-journal-page .notes-update-board p {
  margin: 0;
  color: #879bb2;
  font-size: 12px;
}

.notes-journal-page .notes-badge-muted {
  color: #aab8c7;
  background: rgba(126, 148, 173, 0.12);
  border: 1px solid rgba(126, 148, 173, 0.22);
}

.notes-journal-page .notes-badge-warning {
  color: #ffe0d8;
  background: rgba(255, 120, 95, 0.12);
  border: 1px solid rgba(255, 120, 95, 0.28);
}

.notes-journal-page .notes-observation-section,
.notes-journal-page .notes-terms-section,
.notes-journal-page .notes-troubleshooting-section {
  padding: 80px 0;
}

.notes-journal-page .notes-observation-section,
.notes-journal-page .notes-troubleshooting-section {
  background: rgba(6, 14, 28, 0.72);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.notes-journal-page .notes-observation-intro {
  margin-bottom: 18px;
  padding: 19px 22px;
  background: linear-gradient(120deg, rgba(255, 181, 27, 0.1), rgba(68, 214, 255, 0.05));
  border: 1px solid rgba(255, 181, 27, 0.25);
  border-left: 4px solid var(--gold);
  border-radius: 15px;
}

.notes-journal-page .notes-observation-intro p {
  margin: 0;
  color: #aebfd0;
}

.notes-journal-page .notes-observation-intro strong {
  color: var(--gold-soft);
}

.notes-journal-page .notes-observation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.notes-journal-page .notes-observation-grid > article {
  padding: 23px;
  background:
    linear-gradient(145deg, rgba(68, 214, 255, 0.07), transparent 48%),
    rgba(9, 20, 38, 0.78);
  border: 1px solid var(--line);
  border-radius: 19px;
}

.notes-journal-page .notes-observation-type {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 4px 8px;
  color: var(--cyan);
  background: rgba(68, 214, 255, 0.09);
  border: 1px solid rgba(68, 214, 255, 0.2);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.notes-journal-page .notes-observation-grid h3 {
  margin-bottom: 9px;
  font-size: 21px;
}

.notes-journal-page .notes-observation-grid p {
  margin: 0;
  color: #91a6bd;
  font-size: 14px;
}

.notes-journal-page .notes-observation-grid article > strong {
  display: block;
  margin: 17px 0 5px;
  color: var(--gold-soft);
  font-size: 12px;
}

.notes-journal-page .notes-observation-grid .notes-observation-wide {
  grid-column: 1 / -1;
  background:
    linear-gradient(130deg, rgba(255, 181, 27, 0.08), transparent 38%),
    rgba(9, 20, 38, 0.84);
}

.notes-journal-page .notes-observation-columns {
  display: grid;
  margin-top: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}

.notes-journal-page .notes-observation-columns > div {
  padding: 17px;
  background: rgba(2, 8, 18, 0.42);
  border: 1px solid rgba(117, 162, 208, 0.14);
  border-radius: 13px;
}

.notes-journal-page .notes-observation-columns strong {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-soft);
  font-size: 13px;
}

.notes-journal-page .notes-observation-warning {
  margin-top: 13px !important;
  padding: 13px 15px;
  color: #ffd9d1 !important;
  background: rgba(255, 120, 95, 0.08);
  border: 1px solid rgba(255, 120, 95, 0.22);
  border-radius: 11px;
}

.notes-journal-page .notes-term-search {
  display: grid;
  margin-bottom: 18px;
  grid-template-columns: auto minmax(240px, 520px) 1fr;
  align-items: center;
  gap: 13px;
}

.notes-journal-page .notes-term-search label {
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.notes-journal-page .notes-term-search input {
  width: 100%;
  min-height: 46px;
  padding: 0 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
}

.notes-journal-page .notes-term-search input:focus {
  border-color: var(--cyan);
  outline: 3px solid rgba(68, 214, 255, 0.12);
}

.notes-journal-page .notes-term-search input::placeholder {
  color: #657a92;
}

.notes-journal-page .notes-term-search p {
  margin: 0;
  color: #71879f;
  font-size: 12px;
}

.notes-journal-page .notes-term-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.notes-journal-page .notes-term-grid > article {
  padding: 19px;
  background: rgba(9, 20, 38, 0.72);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.notes-journal-page .notes-term-grid > article.is-featured {
  background:
    linear-gradient(135deg, rgba(68, 214, 255, 0.1), transparent 48%),
    rgba(9, 20, 38, 0.8);
  border-color: rgba(68, 214, 255, 0.27);
}

.notes-journal-page .notes-term-grid article > div {
  display: flex;
  margin-bottom: 8px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.notes-journal-page .notes-term-grid strong {
  color: #fff;
  font-size: 16px;
}

.notes-journal-page .notes-term-grid span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.notes-journal-page .notes-term-grid p {
  margin: 0;
  color: #8fa4bb;
  font-size: 13px;
}

.notes-journal-page .notes-empty-state {
  margin: 15px 0 0;
  padding: 18px;
  color: #aebfd0;
  background: rgba(9, 20, 38, 0.72);
  border: 1px dashed var(--line);
  border-radius: 14px;
  text-align: center;
}

.notes-journal-page .notes-table-wrap {
  overflow-x: auto;
  background: rgba(9, 20, 38, 0.75);
  border: 1px solid var(--line);
  border-radius: 19px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.notes-journal-page .notes-troubleshooting-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 850px;
}

.notes-journal-page .notes-troubleshooting-table th,
.notes-journal-page .notes-troubleshooting-table td {
  padding: 17px 18px;
  border-bottom: 1px solid rgba(117, 162, 208, 0.15);
  vertical-align: top;
  text-align: left;
}

.notes-journal-page .notes-troubleshooting-table thead th {
  color: var(--gold-soft);
  background: rgba(2, 8, 18, 0.58);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.notes-journal-page .notes-troubleshooting-table tbody th {
  width: 20%;
  color: #fff;
  font-size: 14px;
}

.notes-journal-page .notes-troubleshooting-table tbody td {
  color: #94a9c0;
  font-size: 13px;
}

.notes-journal-page .notes-troubleshooting-table tbody tr:last-child th,
.notes-journal-page .notes-troubleshooting-table tbody tr:last-child td {
  border-bottom: 0;
}

.notes-journal-page .notes-troubleshooting-table tbody tr:hover {
  background: rgba(68, 214, 255, 0.035);
}

.notes-journal-page .notes-help-footer {
  display: flex;
  margin-top: 14px;
  padding: 20px 22px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(9, 20, 38, 0.72);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.notes-journal-page .notes-help-footer strong {
  color: #fff;
}

.notes-journal-page .notes-help-footer p {
  margin: 4px 0 0;
  color: #8fa4bb;
  font-size: 13px;
}

.notes-journal-page .notes-full-archive {
  padding: 80px 0;
  background: transparent;
}

.notes-journal-page .notes-archive-filter {
  display: flex;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.notes-journal-page .notes-archive-filter button {
  min-height: 40px;
  padding: 0 14px;
  color: #9fb2c7;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.notes-journal-page .notes-archive-filter button:hover,
.notes-journal-page .notes-archive-filter button:focus-visible,
.notes-journal-page .notes-archive-filter button.is-selected {
  color: #07101f;
  background: var(--cyan);
  border-color: var(--cyan);
}

.notes-journal-page .notes-archive-list {
  display: grid;
  gap: 11px;
}

.notes-journal-page .notes-archive-list > article {
  display: grid;
  padding: 19px;
  align-items: center;
  grid-template-columns: 74px minmax(0, 1fr) minmax(275px, 0.62fr);
  gap: 20px;
  background: rgba(9, 20, 38, 0.74);
  border: 1px solid var(--line);
  border-radius: 17px;
}

.notes-journal-page .notes-archive-date {
  display: flex;
  width: 66px;
  height: 66px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(68, 214, 255, 0.09);
  border: 1px solid rgba(68, 214, 255, 0.2);
  border-radius: 14px;
}

.notes-journal-page .notes-archive-date strong {
  color: var(--cyan);
  font-size: 25px;
  line-height: 1;
}

.notes-journal-page .notes-archive-date span {
  margin-top: 5px;
  color: #7f95ad;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.notes-journal-page .notes-archive-copy > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: #71879f;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.notes-journal-page .notes-archive-copy h3 {
  margin: 8px 0 5px;
  font-size: 18px;
}

.notes-journal-page .notes-archive-copy h3 a:hover {
  color: var(--cyan);
}

.notes-journal-page .notes-archive-copy p {
  margin: 0;
  color: #8398b0;
  font-size: 12px;
}

.notes-journal-page .notes-archive-meta {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.notes-journal-page .notes-archive-meta div {
  padding: 9px;
  background: rgba(2, 8, 18, 0.4);
  border-radius: 9px;
}

.notes-journal-page .notes-archive-meta dt {
  color: #61768e;
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.notes-journal-page .notes-archive-meta dd {
  margin: 3px 0 0;
  color: #b5c6d8;
  font-size: 11px;
}

.notes-journal-page .notes-journal-tools {
  background: rgba(6, 14, 28, 0.72);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 1000px) {
  .notes-journal-page .notes-section-nav {
    top: 82px;
  }

  .notes-journal-page .notes-feature-timeline::before {
    left: 152px;
  }

  .notes-journal-page .notes-feature-card {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 42px;
  }

  .notes-journal-page .notes-feature-card::before {
    left: 146px;
  }

  .notes-journal-page .notes-fact-row,
  .notes-journal-page .notes-observation-columns {
    grid-template-columns: 1fr;
  }

  .notes-journal-page .notes-update-board {
    grid-template-columns: 1fr;
  }

  .notes-journal-page .notes-archive-list > article {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .notes-journal-page .notes-archive-meta {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .notes-journal-page .notes-section-nav {
    position: static;
  }

  .notes-journal-page .notes-section-nav .container {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(132px, 1fr));
  }

  .notes-journal-page .notes-section-nav a {
    min-height: 52px;
  }

  .notes-journal-page .notes-feature-timeline::before,
  .notes-journal-page .notes-feature-card::before {
    display: none;
  }

  .notes-journal-page .notes-feature-card {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .notes-journal-page .notes-feature-order {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
  }

  .notes-journal-page .notes-update-board > article {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .notes-journal-page .notes-update-board > article > .notes-badge {
    grid-column: 2;
    justify-self: start;
  }

  .notes-journal-page .notes-observation-section,
  .notes-journal-page .notes-terms-section,
  .notes-journal-page .notes-troubleshooting-section,
  .notes-journal-page .notes-full-archive {
    padding: 54px 0;
  }

  .notes-journal-page .notes-observation-grid,
  .notes-journal-page .notes-term-grid {
    grid-template-columns: 1fr;
  }

  .notes-journal-page .notes-observation-grid .notes-observation-wide {
    grid-column: auto;
  }

  .notes-journal-page .notes-term-search {
    grid-template-columns: 1fr;
  }

  .notes-journal-page .notes-table-wrap {
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .notes-journal-page .notes-troubleshooting-table,
  .notes-journal-page .notes-troubleshooting-table tbody,
  .notes-journal-page .notes-troubleshooting-table tr,
  .notes-journal-page .notes-troubleshooting-table th,
  .notes-journal-page .notes-troubleshooting-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .notes-journal-page .notes-troubleshooting-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .notes-journal-page .notes-troubleshooting-table tr {
    overflow: hidden;
    margin-bottom: 11px;
    background: rgba(9, 20, 38, 0.78);
    border: 1px solid var(--line);
    border-radius: 15px;
  }

  .notes-journal-page .notes-troubleshooting-table tbody th {
    padding: 16px;
    background: rgba(2, 8, 18, 0.48);
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .notes-journal-page .notes-troubleshooting-table td {
    padding: 13px 16px;
  }

  .notes-journal-page .notes-troubleshooting-table td::before {
    display: block;
    margin-bottom: 4px;
    color: var(--gold-soft);
    content: attr(data-label);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .notes-journal-page .notes-help-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .notes-journal-page .notes-archive-list > article {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 13px;
  }

  .notes-journal-page .notes-archive-date {
    width: 56px;
    height: 56px;
  }

  .notes-journal-page .notes-archive-meta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 470px) {
  .notes-journal-page .notes-archive-meta {
    grid-template-columns: 1fr;
  }

  .notes-journal-page .notes-feature-copy h3 {
    font-size: 22px;
  }
}

@media print {
  .notes-journal-page .notes-section-nav,
  .notes-journal-page .notes-term-search,
  .notes-journal-page .notes-archive-filter {
    display: none !important;
  }

  .notes-journal-page .notes-feature-card,
  .notes-journal-page .notes-observation-grid > article,
  .notes-journal-page .notes-term-grid > article,
  .notes-journal-page .notes-archive-list > article,
  .notes-journal-page .notes-table-wrap {
    color: #111;
    background: #fff;
    border-color: #bbb;
    break-inside: avoid;
  }

  .notes-journal-page .notes-feature-copy > p,
  .notes-journal-page .notes-fact-row p,
  .notes-journal-page .notes-observation-grid p,
  .notes-journal-page .notes-term-grid p,
  .notes-journal-page .notes-archive-copy p,
  .notes-journal-page .notes-troubleshooting-table tbody td {
    color: #333;
  }
}
