:root {
  --blue-midnight: #0B1B3F;
  --blue-ink: #142C6B;
  --blue-core: #2E5BFF;
  --blue-glow: #5B8DFF;
  --blue-sky: #8AB6FF;
  --blue-surface: #EEF3FF;
  --blue-line: #C8D6FF;
  --blue-soft: #F5F8FF;

  --gray-50: #fafafa;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;

  --font-display: 'Fraunces', ui-serif, Georgia, serif;
  --font-sans: 'Inter', 'Public Sans', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px 0 rgba(11, 27, 63, 0.05);
  --shadow-md: 0 4px 16px -4px rgba(46, 91, 255, 0.14);
  --shadow-lg: 0 20px 40px -12px rgba(46, 91, 255, 0.22);
  --shadow-xl: 0 40px 80px -20px rgba(46, 91, 255, 0.32);
  --shadow-glow: 0 8px 24px -6px rgba(46, 91, 255, 0.45);
  --shadow-glow-lg: 0 20px 50px -10px rgba(46, 91, 255, 0.55);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --grad-primary: linear-gradient(135deg, #142C6B 0%, #2E5BFF 55%, #5B8DFF 100%);
  --grad-primary-hover: linear-gradient(135deg, #0B1B3F 0%, #1e44e6 50%, #3b6bff 100%);
  --grad-heading: linear-gradient(135deg, #0B1B3F 0%, #2E5BFF 100%);
  --grad-hero-bg: radial-gradient(ellipse at 85% 90%, rgba(91, 141, 255, 0.35) 0%, rgba(11, 27, 63, 0) 55%),
    linear-gradient(135deg, #0B1B3F 0%, #142C6B 55%, #1a3880 100%);
  --grad-board-bg: radial-gradient(ellipse at 50% 30%, rgba(46, 91, 255, 0.28) 0%, rgba(11, 27, 63, 0) 60%),
    linear-gradient(160deg, #0B1B3F 0%, #0e2252 45%, #142C6B 100%);
  --grad-flap: linear-gradient(180deg, #1a3880 0%, #0B1B3F 100%);
  --grad-under: linear-gradient(90deg, #2E5BFF 0%, #5B8DFF 100%);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--gray-800);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  background: var(--grad-heading);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

h1 em,
h2 em,
h3 em,
h4 em {
  font-style: italic;
  font-weight: 500;
  color: var(--blue-core);
  -webkit-text-fill-color: var(--blue-core);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

p {
  color: var(--gray-600);
  margin: 0;
}

a {
  color: var(--blue-ink);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
  position: relative;
}

a:hover {
  color: var(--blue-core);
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

@media (max-width: 640px) {
  .wrap {
    padding: 0 20px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-700);
  padding: 7px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  background: var(--gray-50);
}

.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--gray-700);
  border-radius: 50%;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  position: relative;
}

.section-head .eyebrow {
  margin-bottom: 20px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-head h2::after {
  content: '';
  display: block;
  width: 64px;
  height: 2px;
  margin: 22px auto 0;
  background: var(--gray-400);
  border-radius: 999px;
}

.section-head p {
  font-size: 16.5px;
  color: var(--gray-600);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}

.nav>.wrap {
  max-width: 100%;
  margin: 0;
  padding: 0 clamp(20px, 4vw, 56px);
}

.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}

.brand::after {
  display: none;
}

/* Logo bulat — gunakan square bukan landscape */
.brand__logo-wrap {
<<<<<<< Updated upstream
  width: 44px;
  height: 44px;
=======
  display: flex;
  align-items: center;
>>>>>>> Stashed changes
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo is often a square/circle badge — allow natural sizing */
.brand__logo {
<<<<<<< Updated upstream
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
=======
  width: auto;
  max-height: 52px;
  object-fit: contain;
>>>>>>> Stashed changes
  display: block;
}

/* .brand__logo base styles now defined above */

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 1px;
}

.brand__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  background: var(--grad-heading);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}

.brand__text small {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-core);
  -webkit-text-fill-color: var(--blue-core);
  margin-top: 2px;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  opacity: 0.75;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.2s var(--ease-out);
}

.nav__links a::after {
  display: none;
}

.nav__links a:hover {
  color: var(--gray-900);
  font-weight: 600;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--gray-900);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s var(--ease-out);
  box-shadow: 0 2px 8px -3px rgba(0, 0, 0, 0.18);
}

.nav__cta::after {
  display: none;
}

.nav__cta:hover {
  background: #000;
  transform: translateY(-1px);
  color: #fff;
  box-shadow: 0 6px 16px -5px rgba(0, 0, 0, 0.22);
}

.nav__toggle {
  display: none;
  background: var(--gray-50);
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.nav__toggle:hover {
  background: var(--gray-100);
  color: var(--gray-900);
  border-color: var(--gray-400);
}

@media (max-width: 1200px) {
  .brand__text {
    font-size: 15px;
  }

  .nav__links a {
    padding: 7px 11px;
    font-size: 14px;
  }
<<<<<<< Updated upstream
=======

  .brand__logo {
    max-height: 48px;
  }
>>>>>>> Stashed changes
}

@media (max-width: 960px) {
  .brand__text {
    display: none;
  }

  .nav__links a {
    padding: 7px 9px;
    font-size: 13.5px;
  }
}

@media (max-width: 900px) {
  .brand__text {
    display: flex;
  }
<<<<<<< Updated upstream
=======

  .brand__logo {
    max-height: 44px;
  }

>>>>>>> Stashed changes
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: inline-flex;
  }
}

@media (max-width: 520px) {
<<<<<<< Updated upstream
  .brand__logo-wrap {
    width: 38px;
    height: 38px;
=======
  .brand__logo {
    max-height: 38px;
>>>>>>> Stashed changes
  }

  .brand__text {
<<<<<<< Updated upstream
    font-size: 13.5px;
=======
    font-size: 13px;
>>>>>>> Stashed changes
  }

  .brand {
    gap: 8px;
<<<<<<< Updated upstream
=======
  }

  .nav__row {
    padding: 10px 0;
>>>>>>> Stashed changes
  }
}

@media (max-width: 400px) {
  .brand__logo {
    max-height: 36px;
  }

  .brand__text {
    display: none;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--gray-900);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transition: all 0.2s var(--ease-out);
  box-shadow: 0 4px 14px -5px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  display: none;
}

.btn-primary:hover {
  background: #000;
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px -3px rgba(0, 0, 0, 0.2);
}

.btn-primary svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s var(--ease-out);
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 22px;
  background: transparent;
  color: var(--gray-800);
  border: 1.5px solid var(--gray-300);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s var(--ease-out);
}

.btn-ghost-dark::after {
  display: none;
}

.btn-ghost-dark:hover {
  background: var(--gray-50);
  border-color: var(--gray-600);
  color: var(--gray-900);
  transform: translateY(-1px);
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s var(--ease-out);
}

.btn-ghost-light::after {
  display: none;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s var(--ease-out);
}

.btn-outline-dark::after {
  display: none;
}

.btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 88px;
  background: var(--grad-hero-bg);
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(138, 182, 255, 0.15) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 0.7;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 120px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .hero {
    padding: 56px 0 80px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 44px;
    text-align: center;
  }
}

.hero .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
}

.hero .eyebrow::before {
  background: rgba(255, 255, 255, 0.7);
}

.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 20px 0 22px;
  background: linear-gradient(135deg, #ffffff 0%, #cddcff 60%, #8AB6FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero h1 em {
  background: linear-gradient(135deg, #5B8DFF 0%, #b5d0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 500;
}

.hero .lede {
  font-size: 17.5px;
  line-height: 1.75;
  color: rgba(205, 220, 255, 0.92);
  margin: 0 0 32px;
  max-width: 560px;
}

@media (max-width: 900px) {
  .hero .lede {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .hero__actions {
    justify-content: center;
  }
}

.hero .btn-ghost-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.hero .btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(138, 182, 255, 0.18);
  max-width: 520px;
}

.hero__meta>div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__meta .num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #8AB6FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.hero__meta .lbl {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(138, 182, 255, 0.88);
}

@media (max-width: 900px) {
  .hero__meta {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .hero__meta {
    grid-template-columns: 1fr 1fr;
  }

  .hero__meta>div:last-child {
    grid-column: span 2;
  }
}

.seal-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  aspect-ratio: 1;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(91, 141, 255, 0.25) 0%, rgba(11, 27, 63, 0) 55%),
    linear-gradient(135deg, rgba(46, 91, 255, 0.12) 0%, rgba(11, 27, 63, 0.2) 100%);
  border: 2px solid rgba(91, 141, 255, 0.45);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.12),
    0 0 0 8px rgba(46, 91, 255, 0.08);
}

.seal-wrap::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1.5px dashed rgba(138, 182, 255, 0.55);
  border-radius: 50%;
  animation: spinSeal 40s linear infinite;
}

.seal-wrap::after {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(91, 141, 255, 0.35);
  border-radius: 50%;
}

@keyframes spinSeal {
  to {
    transform: rotate(360deg);
  }
}

.seal {
  position: relative;
  z-index: 1;
  max-width: 70%;
  height: auto;
  filter: drop-shadow(0 6px 16px rgba(11, 27, 63, 0.55)) drop-shadow(0 0 24px rgba(46, 91, 255, 0.3));
  opacity: 0.96;
}

.board-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.16), transparent 30%),
    radial-gradient(circle at 85% 0%, rgba(125, 211, 252, 0.18), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #eef6ff 45%, #fdfefe 100%);
  color: #12304f;
  isolation: isolate;
}

.board-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.16)),
    repeating-linear-gradient(0deg,
      transparent,
      transparent 56px,
      rgba(37, 99, 235, 0.05) 56px,
      rgba(37, 99, 235, 0.05) 57px);
  pointer-events: none;
  opacity: 0.95;
}

.board-section::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.2), transparent 72%);
  filter: blur(24px);
  top: -120px;
  right: -120px;
  pointer-events: none;
}

.board-inner {
  position: relative;
  z-index: 1;
}

.board-info-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: max-content;
  max-width: 90%;
  margin: 0 auto 36px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 10px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 24px -8px rgba(37, 99, 235, 0.25);
}

.board-info-banner__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  background: rgba(59, 130, 246, 0.12);
  padding: 6px;
  border-radius: 50%;
}

.board-info-banner__text {
  font-size: 13px;
  color: #475569;
  text-align: left;
  line-height: 1.4;
}

.board-info-banner__text strong {
  color: #1e293b;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-family: var(--font-display);
  margin-right: 4px;
}

@keyframes float-banner {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.board-note {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #5b728f;
  line-height: 1.7;
}

.board-note b {
  color: #183a60;
}

.picker-wrap {
  max-width: 800px;
  margin: 0 auto 16px;
  padding: 20px 18px 14px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: all 0.35s var(--ease-out);
}

.picker-wrap.picker-highlight {
  border-color: rgba(37, 99, 235, 0.22);
  border-style: dashed;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(233, 243, 255, 0.92));
  box-shadow: 0 16px 32px -24px rgba(37, 99, 235, 0.35);
  animation: pulse-highlight 2.4s ease-in-out;
}

@keyframes pulse-highlight {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.06);
  }
}

.picker-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #37618c;
  margin-bottom: 14px;
  text-align: center;
}

.jenjang-picker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.jenjang-picker__btn {
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.9);
  color: #29486d;
  border: 1px solid rgba(59, 130, 246, 0.16);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  box-shadow: 0 8px 18px -12px rgba(37, 99, 235, 0.24);
}

.jenjang-picker__btn:hover {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -14px rgba(37, 99, 235, 0.4);
}

.jenjang-picker__btn.is-active {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: var(--white);
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 16px 32px -14px rgba(37, 99, 235, 0.45);
}

.empty-state {
  padding: 64px 32px;
  border: 1px dashed rgba(37, 99, 235, 0.16);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(234, 244, 255, 0.9));
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 22px 44px -28px rgba(37, 99, 235, 0.24);
}

.empty-state__icon {
  margin-bottom: 24px;
  color: #5b7cae;
}

.empty-state__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #163a5a;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.empty-state__desc {
  font-size: 15px;
  line-height: 1.75;
  color: #5b728f;
  margin: 0 0 32px;
  max-width: 540px;
}

.empty-state__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: var(--white);
  font-weight: 700;
  font-size: 15.5px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  font-family: var(--font-sans);
  box-shadow: 0 18px 26px -16px rgba(37, 99, 235, 0.35);
}

.empty-state__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 32px -18px rgba(37, 99, 235, 0.42);
}

.countdown-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.countdown-head {
  margin-bottom: 24px;
  text-align: center;
}

.countdown-badge {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  color: #29527a;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 20px -14px rgba(37, 99, 235, 0.2);
}

.countdown-badge--released {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  border-color: transparent;
  color: var(--white);
  letter-spacing: 0.06em;
  font-weight: 700;
}

.countdown-date {
  margin: 14px 0 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: #53708f;
}

.countdown-date b {
  color: #183a60;
  font-weight: 700;
}

.countdown-date--released {
  color: #2f5374;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 10px 24px -18px rgba(37, 99, 235, 0.24);
}

.flapboard {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  padding: 40px 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 242, 255, 0.95));
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: var(--radius-lg);
  margin: 0 auto;
  box-shadow: 0 24px 44px -28px rgba(37, 99, 235, 0.22);
}

@media (max-width: 600px) {
  .flapboard {
    gap: 6px;
    padding: 20px 12px;
  }

  .flap-unit {
    max-width: 80px;
  }

  .flap-inner {
    font-size: clamp(28px, 8vw, 48px);
  }

  .flap-caption {
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .countdown-date {
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
    padding: 0 8px;
  }

  .countdown-wrap {
    padding: 0 4px;
  }

  .jenjang-picker__btn {
    padding: 10px 14px;
    font-size: 13px;
  }

  .picker-wrap {
    padding: 16px 12px 12px;
  }

  .board-info-banner {
    padding: 8px 14px;
    gap: 8px;
  }

  .board-info-banner__text {
    font-size: 12px;
  }

  .countdown-actions {
    gap: 8px;
    margin-top: 20px;
  }

  .btn-ghost-light,
  .btn-outline-dark {
    padding: 11px 18px;
    font-size: 13.5px;
  }
}

.flap-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.flap-unit {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-width: 140px;
  background: linear-gradient(180deg, #ffffff 0%, #eaf4ff 100%);
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -2px 0 rgba(37, 99, 235, 0.08),
    0 18px 30px -18px rgba(37, 99, 235, 0.3);
}

.flap-unit::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.16) 20%, rgba(37, 99, 235, 0.16) 80%, transparent);
}

.flap-inner {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  color: #12304f;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(37, 99, 235, 0.08);
}

.flapboard--released .flap-inner {
  color: #15803d;
  text-shadow: 0 0 24px rgba(21, 128, 61, 0.2);
}

.flap-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b87a8;
}

.countdown-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.08);
  color: #24507a;
  font-weight: 600;
  font-size: 14.5px;
  padding: 14px 26px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease-out);
  cursor: pointer;
  font-family: var(--font-sans);
}

.btn-ghost-light:hover {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.26);
  transform: translateY(-1px);
}

.btn-primary--released {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: var(--white);
  font-weight: 700;
  font-size: 15.5px;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  font-family: var(--font-sans);
  box-shadow: 0 18px 26px -16px rgba(37, 99, 235, 0.35);
}

.btn-primary--released:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 32px -18px rgba(37, 99, 235, 0.42);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.75);
  color: #4d6e8d;
  font-weight: 600;
  font-size: 14.5px;
  padding: 14px 26px;
  border: 1px solid rgba(59, 130, 246, 0.16);
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease-out);
  cursor: pointer;
  font-family: var(--font-sans);
}

.btn-outline-dark:hover {
  color: #183a60;
  border-color: rgba(37, 99, 235, 0.26);
  background: rgba(37, 99, 235, 0.08);
}


.steps-section,
.principles-section,
.jenjang-section,
.check-band,
.helpband-section {
  padding: 96px 0;
  position: relative;
}

.check-band {
  padding: 72px 0 96px;
  background: linear-gradient(180deg, var(--blue-soft) 0%, var(--white) 100%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 40px;
  align-items: start;
  position: relative;
  padding: 16px 0 0;
}

@media (max-width: 860px) {
  .steps {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }

  .steps-section,
  .principles-section,
  .jenjang-section {
    padding: 64px 0;
  }
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.94);
  border: none;
  border-radius: 24px;
  box-shadow: 0 22px 60px -44px rgba(15, 23, 42, 0.16);
  overflow: visible;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 68px -48px rgba(15, 23, 42, 0.2);
}

.step::before,
.step:last-child::before {
  display: none;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 0;
  background: linear-gradient(135deg, #375a7f 0%, #6d5d86 40%, #b37ccf 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 32px -16px rgba(17, 24, 39, 0.28);
}

.step__num--one,
.step__num--two,
.step__num--three {
  background: linear-gradient(135deg, #375a7f 0%, #6d5d86 40%, #b37ccf 100%);
}

.step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--gray-600);
}

.doc-card {
  background: #fff;
  border: 1px solid var(--blue-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.doc-card:hover {
  transform: translateY(-3px);
  border-color: var(--gray-400);
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.15);
}

.doc-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 28px 22px;
  border-bottom: 1px solid var(--blue-surface);
  background: linear-gradient(180deg, var(--blue-soft) 0%, #ffffff 100%);
}

.doc-card__head h4 {
  font-size: 20px;
  margin-bottom: 4px;
}

.doc-card__head span {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--gray-500);
  letter-spacing: 0.04em;
}

.doc-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.doc-card__badge.is-open {
  background: var(--gray-100);
  border-color: var(--gray-700);
  color: var(--gray-900);
}

.doc-card form {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  font-family: var(--font-sans);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--gray-800);
  transition: all 0.2s var(--ease-out);
  outline: none;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--gray-400);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gray-700);
  background: #fff;
}

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: #ef4444;
}

.field .error {
  font-size: 13px;
  color: #dc2626;
  font-weight: 500;
}

.doc-card__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 22px;
  margin-top: 6px;
  background: var(--gray-900);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s var(--ease-out);
  box-shadow: 0 4px 14px -5px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.doc-card__submit::after {
  display: none;
}

.doc-card__submit:hover {
  background: #000;
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.3);
}

.doc-card__submit svg {
  transition: transform 0.25s var(--ease-out);
}

.doc-card__submit:hover svg {
  transform: translateX(3px);
}

.doc-card__foot {
  padding: 0 28px 26px;
  font-size: 13px;
  color: var(--gray-500);
  text-align: center;
  line-height: 1.7;
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

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

@media (max-width: 560px) {
  .principles {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

.principles-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--blue-soft) 100%);
}

.principle {
  padding: 30px 28px;
  background: #fff;
  border: 1px solid var(--blue-line);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.principle__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}

.principle__icon {
  width: 72px;
  height: 72px;
  display: block;
  color: var(--gray-700);
  stroke-width: 2.2;
}

.principle__icon svg {
  width: 72px;
  height: 72px;
  display: block;
}

.principle__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.principle h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.principle p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--gray-600);
}

.jenjang-section {
  background: linear-gradient(180deg, var(--blue-soft) 0%, var(--white) 100%);
}

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

@media (max-width: 860px) {
  .jenjang-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

.jenjang-card {
  position: relative;
  padding: 30px 28px;
  background: #fff;
  border: 1px solid var(--blue-line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
}

.jenjang-card::after {
  display: none;
}

.jenjang-card:hover {
  transform: translateY(-5px);
  border-color: var(--gray-400);
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.15);
}

.jenjang-card .code {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 12px;
  background: var(--gray-50);
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-700);
}

.jenjang-card h4 {
  font-size: 21px;
  line-height: 1.25;
  margin: 2px 0 2px;
}

.jenjang-card p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--gray-600);
}

.jenjang-card .jenjang-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  font-family: var(--font-sans);
}

.jenjang-card .jenjang-card__cta svg {
  transition: transform 0.25s var(--ease-out);
}

.jenjang-card:hover .jenjang-card__cta svg {
  transform: translateX(4px);
}

.helpband-section {
  padding: 64px 0 96px;
}

.helpband {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 44px 48px;
  background: var(--grad-board-bg);
  border-radius: 24px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(11, 27, 63, 0.5);
}

.helpband::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 20%, rgba(91, 141, 255, 0.35) 0%, rgba(11, 27, 63, 0) 55%),
    radial-gradient(circle at 1px 1px, rgba(138, 182, 255, 0.12) 1px, transparent 0);
  background-size: auto, 26px 26px;
  pointer-events: none;
}

.helpband>* {
  position: relative;
  z-index: 1;
}

.helpband>div:first-child {
  max-width: 520px;
}

.helpband h3 {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 0%, #cddcff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.helpband p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(205, 220, 255, 0.9);
}

.helpband .btn-primary {
  background: #fff;
  color: var(--gray-900);
  box-shadow: 0 10px 28px -8px rgba(0, 0, 0, 0.45);
}

.helpband .btn-primary:hover {
  background: var(--gray-100);
  color: var(--gray-900);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 720px) {
  .helpband {
    padding: 32px 28px;
  }

  .helpband h3 {
    font-size: 21px;
  }
}

footer {
  padding: 64px 0 32px;
  background: linear-gradient(180deg, var(--white) 0%, var(--blue-soft) 100%);
  border-top: 1px solid var(--blue-line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) minmax(220px, 1fr) minmax(220px, 1fr);
  gap: 42px;
  max-width: 980px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--blue-line);
  align-items: start;
  justify-items: stretch;
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .footer-grid> :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 20px;
  }

  .footer-grid> :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 380px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Footer Brand Block ── */
.footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* Logo + Nama sejajar horizontal */
.footer-brand-identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Logo bulat di footer — sedikit lebih besar dari nav */
.footer-logo-wrap {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-wrap .brand__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Nama & subtitle di footer */
.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  background: var(--grad-heading);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
  display: block;
}

.footer-brand-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  display: block;
  opacity: 0.8;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray-600);
  max-width: 320px;
  margin: 0;
}

footer h5 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--grad-heading);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer ul a {
  display: inline-block;
  font-size: 14.5px;
  color: var(--gray-600);
  padding: 2px 0;
}

footer ul a::after {
  bottom: 0;
  height: 1.5px;
  transform-origin: left;
}

footer ul a:hover {
  color: var(--blue-core);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 0.02em;
  text-align: center;
}