:root {
  --neo-forest: #6a6a1b;
  --neo-leaf: #b08a1f;
  --neo-lime: #efe2c2;
  --neo-cream: #f3ecef;
  --neo-sun: #d4a52c;
  --neo-teal: #8f6c1a;
  --neo-ink: #3b3a2b;
  --neo-muted: #6f6a52;
  --neo-shadow: 0 18px 40px rgba(74, 60, 26, 0.18);
  --neo-soft-shadow: 0 12px 28px rgba(74, 60, 26, 0.14);
  --neo-radius: 20px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  background: #f5eef2;
  color: var(--neo-ink);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Newsreader", "Times New Roman", serif;
  margin: 0 0 0.6rem;
  font-weight: 600;
  color: var(--neo-forest);
}

p {
  margin: 0 0 1rem;
  color: var(--neo-muted);
}

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

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.section-title h2 {
  font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
}

.section-title .kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--neo-teal);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.small {
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
}

.btn.primary {
  background: linear-gradient(135deg, #b4861b, #e0b94b);
  color: #2e2c1d;
  box-shadow: var(--neo-soft-shadow);
}

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

.btn.ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(90, 74, 28, 0.25);
}

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

.btn.outline {
  border-color: #b4861b;
  color: var(--neo-forest);
  background: transparent;
}

.btn.outline:hover {
  background: rgba(180, 134, 27, 0.14);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 240, 243, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(120, 98, 40, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 220px;
}

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

.brand-text span {
  display: block;
  font-weight: 700;
  color: var(--neo-forest);
}

.brand-text small {
  display: block;
  font-size: 0.75rem;
  color: var(--neo-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  font-size: 0.95rem;
  margin-left: auto;
  align-items: center;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: #c89b2b;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links .btn {
  margin-left: 0.4rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(120, 98, 40, 0.24);
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  padding: 6px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--neo-forest);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 8.5rem 0 5.5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url("https://assets.ntvnews.id/microsite/nushaf/img/bg-nushaf.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(214, 165, 44, 0.35), transparent 70%);
  top: -200px;
  right: -120px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(170, 140, 58, 0.28), transparent 70%);
  bottom: -160px;
  left: -120px;
}

.hero-bg {
  display: none;
}

.hero-bg svg {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0.9;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 2.5rem;
  align-items: center;
  transform: translateY(-36px);
}

.hero-text h1 {
  font-size: clamp(2.4rem, 2.8vw + 1rem, 3.6rem);
  line-height: 1.05;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(212, 165, 44, 0.18);
  color: var(--neo-forest);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.meta-card {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid rgba(120, 98, 40, 0.16);
  box-shadow: var(--neo-soft-shadow);
}

.meta-card strong {
  display: block;
  color: var(--neo-forest);
}

.meta-card span {
  font-size: 0.9rem;
  color: var(--neo-muted);
}

.hero-card {
  background: #fff;
  border-radius: var(--neo-radius);
  padding: 0;
  box-shadow: 0 26px 60px rgba(76, 58, 20, 0.26);
  border: 1px solid rgba(120, 98, 40, 0.18);
  animation: rise 0.9s ease both;
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.tag {
  display: inline-flex;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(212, 165, 44, 0.2);
  color: var(--neo-teal);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: grid;
  gap: 0.8rem;
}

.feature-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--neo-muted);
}

.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: var(--neo-sun);
  flex-shrink: 0;
}

.hero-card-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(21, 50, 91, 0.12);
  padding-top: 1rem;
}

.hero-card-footer img {
  width: 64px;
}

.muted {
  color: var(--neo-muted);
  font-size: 0.85rem;
}

.about {
  background: #f4eef1;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.stat {
  background: #efe6dc;
  border-radius: 16px;
  padding: 1rem;
  text-align: left;
}

.stat h3 {
  font-size: 1.6rem;
  margin-bottom: 0.2rem;
}

.stat p {
  margin: 0;
  font-size: 0.85rem;
}

.about-card {
  background: linear-gradient(160deg, #f8f1e8 0%, #efe2d2 100%);
  border-radius: var(--neo-radius);
  overflow: hidden;
  box-shadow: var(--neo-shadow);
}

.about-card-body {
  padding: 1.4rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pill {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(212, 165, 44, 0.16);
  color: var(--neo-forest);
  font-size: 0.8rem;
}

.sponsors {
  background: #f4eef1;
}

.sponsors .section-title {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.sponsors .section-title .kicker {
  color: #b4861b;
  letter-spacing: 0.28em;
  font-size: 0.7rem;
}

.sponsors .section-title h2 {
  font-size: clamp(2.1rem, 2.4vw + 1rem, 3.1rem);
  color: #6a6a1b;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
  align-items: stretch;
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 1.6rem;
  position: relative;
}

.logo-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #efe6dc;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(90, 70, 30, 0.08);
  z-index: 0;
}

.logo-grid img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  background: #fff;
  padding: 24px 32px;
  border-radius: 20px;
  border: 1px solid rgba(120, 98, 40, 0.18);
  box-shadow: 0 12px 26px rgba(90, 70, 30, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.logo-grid img:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(90, 70, 30, 0.2);
  border-color: rgba(120, 98, 40, 0.32);
  background: #fff;
}

.agenda {
  background: #f4eef1;
}

.agenda-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.schedule-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  background: linear-gradient(180deg, #efe2d2 0%, #eadac6 60%, #e2cfb6 100%);
  border-radius: var(--neo-radius);
  padding: 1.4rem;
  box-shadow: var(--neo-shadow);
  position: sticky;
  top: 96px;
  align-self: start;
}

.schedule-item {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(120, 98, 40, 0.16);
  width: 100%;
  text-align: left;
  font-family: inherit;
  color: inherit;
  appearance: none;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.schedule-item:last-child {
  margin-bottom: 0;
}

.schedule-item:hover {
  transform: translateY(-2px);
  border-color: rgba(120, 98, 40, 0.35);
}

.schedule-item.is-active {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(244, 234, 220, 0.95));
  border-color: rgba(120, 98, 40, 0.45);
  box-shadow: var(--neo-soft-shadow);
}

.schedule-item:focus-visible {
  outline: 2px solid rgba(120, 98, 40, 0.35);
  outline-offset: 2px;
}

.schedule-item h4 {
  font-size: 1rem;
  margin: 0.2rem 0 0;
}

.schedule-item p {
  margin: 0.1rem 0 0;
}

.schedule-item .time {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--neo-teal);
  font-weight: 600;
}

.detail-card {
  background: #f7f1e8;
  border-radius: var(--neo-radius);
  padding: 1.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  border: 1px solid rgba(120, 98, 40, 0.16);
  box-shadow: var(--neo-soft-shadow);
}

.speaker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.speaker img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.speaker.is-hidden {
  display: none;
}

.agenda-time {
  margin: 0.4rem 0 0.9rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--neo-teal);
  font-weight: 600;
}

.agenda-list {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  color: var(--neo-muted);
}

.agenda-list li {
  margin-bottom: 0.4rem;
}

.agenda-list.is-hidden {
  display: none;
}

.detail-side {
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.detail-side .badge {
  background: rgba(212, 165, 44, 0.2);
  color: var(--neo-forest);
  font-weight: 600;
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  font-size: 0.85rem;
  text-align: center;
}

.detail-side .badge strong {
  display: block;
  font-size: 1.1rem;
  color: var(--neo-forest);
}

.ratings {
  background: linear-gradient(180deg, #f7f1e8 0%, #efe2d2 100%);
}

.articles {
  background: #f4eef1;
}

.videos {
  background: #f3ede6;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.media-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--neo-soft-shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.media-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--neo-shadow);
}

.media-card .media {
  height: 200px;
  overflow: hidden;
}

.media-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.media-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card .media-body {
  padding: 1rem 1rem 1.2rem;
}

.media-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.media-card p {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.chip {
  display: inline-flex;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(212, 165, 44, 0.2);
  color: var(--neo-teal);
}

.video-card {
  position: relative;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(10, 23, 17, 0.7) 100%);
}

.video-card .play {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  display: grid;
  place-items: center;
  z-index: 2;
}

.video-card .play span {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--neo-forest);
  margin-left: 2px;
}

.video-card .media-body {
  position: relative;
  z-index: 2;
  color: #fff;
}

.video-card .media-body h3 {
  color: #fff;
}

.video-card .media-body p {
  color: rgba(255, 255, 255, 0.8);
}

.cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.footer {
  background: linear-gradient(160deg, #f7f1e8 0%, #efe2d2 100%);
  color: var(--neo-forest);
  padding: 3rem 0 2.5rem;
  border-top: 1px solid rgba(120, 98, 40, 0.16);
}

.footer h4 {
  color: var(--neo-forest);
  margin-bottom: 0.8rem;
}

.footer a {
  color: var(--neo-forest);
  font-size: 0.9rem;
}

.footer .logo {
  height: 48px;
  width: auto;
}

.footer .line {
  height: 1px;
  background: rgba(180, 134, 27, 0.18);
  margin: 1.5rem 0;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: grid;
  gap: 0.9rem;
  max-width: 640px;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-logos .logo.ntvnews {
  height: 40px;
}

.logo-divider {
  width: 1px;
  height: 36px;
  background: rgba(120, 98, 40, 0.25);
}

.footer-desc {
  margin: 0;
  text-align: left;
  color: var(--neo-forest);
  max-width: 560px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(120, 98, 40, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.75);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(90, 70, 30, 0.18);
  border-color: rgba(120, 98, 40, 0.32);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-contact p {
  margin: 0 0 0.4rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .agenda-grid,
  .detail-card {
    grid-template-columns: 1fr;
  }

  .schedule-list {
    position: static;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow: auto;
    padding-bottom: 0.4rem;
  }
}

@media (max-width: 720px) {
  .logo-grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }
}

@media (min-width: 901px) {
  .schedule-item p {
    display: none;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100%, 92%);
  }

  .section {
    padding: 3.2rem 0;
  }

  .hero {
    padding: 5.5rem 0 4rem;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    padding: 0.9rem 0;
  }

  .brand {
    min-width: auto;
    justify-content: flex-start;
    text-align: left;
  }

  .brand img {
    width: 48px;
  }

  .brand-text small {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }

  .nav-links {
    order: 3;
    gap: 1rem;
    font-size: 0.9rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 0;
  }

  .btn {
    padding: 0.8rem 1.2rem;
  }

  .header-inner .btn.small {
    width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
    order: 2;
    align-self: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    padding: 0.6rem 0;
    border-top: 1px solid rgba(21, 50, 91, 0.12);
    border-bottom: 1px solid rgba(21, 50, 91, 0.12);
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .nav-links .btn {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  body.nav-open .nav-links {
    display: flex;
  }

  body.nav-open .nav-toggle {
    background: #efe2d2;
    border-color: rgba(120, 98, 40, 0.3);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .hero-grid {
    transform: translateY(-12px);
  }

  .meta-card {
    padding: 0.8rem;
  }

  .hero-card {
    padding: 1.2rem;
  }

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

  .schedule-item {
    padding: 0.7rem 0.8rem;
  }

  .detail-card {
    padding: 1.3rem;
  }

  .agenda-grid {
    gap: 1.4rem;
  }

  .schedule-list {
    padding: 1.1rem;
  }

  .agenda-list {
    padding-left: 1rem;
  }

  .agenda-list li {
    font-size: 0.9rem;
  }

  .media-card .media {
    height: 120px;
  }

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

  .footer-top {
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-social {
    flex-wrap: wrap;
  }

  .logo-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 1rem;
    max-width: 100%;
  }

  .logo-grid img {
    height: 140px;
    padding: 16px 18px;
  }
}

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





