/* =============================================
   MAJESTIC BAY — Main Stylesheet
   Singapore's Social Newsfeed
   ============================================= */

:root {
  --navy:       #0a1628;
  --navy-mid:   #112040;
  --navy-light: #1a3160;
  --gold:       #c9a84c;
  --gold-light: #e8c96e;
  --gold-pale:  #f5e9c8;
  --white:      #ffffff;
  --off-white:  #f8f6f1;
  --muted:      #8a9ab5;
  --text:       #1e2d45;
  --text-light: #4a5c74;
  --border:     rgba(201,168,76,0.18);
  --card-bg:    #ffffff;
  --shadow-sm:  0 2px 12px rgba(10,22,40,0.08);
  --shadow-md:  0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg:  0 24px 64px rgba(10,22,40,0.18);
  --radius:     12px;
  --radius-lg:  20px;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.15;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.02em; }
em { font-style: italic; color: var(--gold); }
p { color: var(--text-light); line-height: 1.75; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.25);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--gold);
  font-size: 0.95rem;
  transition: gap var(--transition);
}
.link-arrow:hover { gap: 12px; }

/* =============================================
   LABELS & TAGS
   ============================================= */
.label-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  border-left: 3px solid var(--gold);
  padding-left: 10px;
}

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.navbar { padding: 0; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 0.9rem;
  border-radius: 8px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.logo-text em {
  font-style: italic;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links li a {
  padding: 8px 14px;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-links li a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.88) 0%,
    rgba(10,22,40,0.65) 50%,
    rgba(17,32,64,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 120px 32px 80px;
  margin: 0 auto 0 calc((100vw - 1200px) / 2 + 32px);
  animation: heroFadeUp 0.9s cubic-bezier(0.4,0,0.2,1) forwards;
}
@media (max-width: 1264px) { .hero-content { margin-left: 32px; } }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-title {
  color: var(--white);
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
}
.hero-title em { color: var(--gold-light); }
.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.coming-soon-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 22px;
}
.cs-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-dot {
  animation: scrollDot 2.2s infinite ease-in-out;
}
@keyframes scrollDot {
  0%, 100% { cy: 7; opacity: 1; }
  50% { cy: 16; opacity: 0.3; }
}

/* =============================================
   SECTION INTRO
   ============================================= */
.section-intro {
  padding: 100px 0;
  background: var(--off-white);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.intro-text h2 { margin-bottom: 22px; }
.intro-text p { margin-bottom: 16px; }
.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.feature-card h3 { font-size: 1rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.875rem; color: var(--text-light); }

/* =============================================
   SECTION TOPICS
   ============================================= */
.section-topics {
  padding: 100px 0;
  background: var(--navy);
}
.section-topics .label-tag { color: var(--gold); }
.section-topics h2 { color: var(--white); margin-bottom: 48px; }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.topic-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: block;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.topic-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
}
.topic-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.topic-card:hover::before { opacity: 1; }
.topic-politics  { background: linear-gradient(135deg, #1a3a5c, #0f2238); }
.topic-tech      { background: linear-gradient(135deg, #1a2a4a, #0d1f38); }
.topic-finance   { background: linear-gradient(135deg, #2a1f0f, #1a1208); }
.topic-culture   { background: linear-gradient(135deg, #2a1a3a, #1a0f28); }
.topic-sports    { background: linear-gradient(135deg, #0f2a1a, #091a10); }
.topic-world     { background: linear-gradient(135deg, #1a2a3a, #0f1f2e); }
.topic-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.topic-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.topic-card p { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.5; }
.topic-card:hover h3 { color: var(--gold-light); }
.topics-cta { text-align: center; }

/* =============================================
   HOW IT WORKS
   ============================================= */
.section-how {
  padding: 100px 0;
  background: var(--off-white);
}
.section-how h2 { color: var(--navy); }
.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 56px;
}
.step-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
}
.step-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.step-number {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}
.step-card h3 { margin-bottom: 12px; }
.step-card p { font-size: 0.9rem; }
.step-connector {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.4;
  padding: 0 16px;
  flex-shrink: 0;
}

/* =============================================
   NEWSLETTER
   ============================================= */
.section-newsletter {
  padding: 80px 0;
  background: var(--navy);
}
.newsletter-box {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.cs-badge {
  display: inline-block;
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.newsletter-box h2 {
  color: var(--white);
  margin-bottom: 18px;
}
.newsletter-box > p {
  color: rgba(255,255,255,0.68);
  margin-bottom: 36px;
}
.nl-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 16px;
}
.nl-form input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.nl-form input::placeholder { color: rgba(255,255,255,0.4); }
.nl-form input:focus { border-color: var(--gold); }
.nl-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38) !important;
}

/* =============================================
   ABOUT TEASER
   ============================================= */
.section-about-teaser {
  padding: 100px 0;
  background: var(--white);
}
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-teaser-text h2 { margin-bottom: 22px; }
.about-teaser-text p { margin-bottom: 16px; }
.about-teaser-text .btn { margin-top: 8px; }
.about-teaser-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stat-card {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.stat-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy);
  padding: 72px 0 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  color: var(--gold);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}
.footer-bottom a {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold); }

/* =============================================
   INNER PAGE HERO
   ============================================= */
.inner-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.inner-hero h1 { color: var(--white); margin-bottom: 16px; }
.inner-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 560px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: var(--gold); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { opacity: 0.4; }

/* =============================================
   PAGE CONTENT
   ============================================= */
.page-content {
  padding: 80px 0;
}
.page-content h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
  color: var(--navy);
}
.page-content h2:first-child { margin-top: 0; }
.page-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}
.page-content ul, .page-content ol {
  margin: 16px 0 24px 20px;
  color: var(--text-light);
  line-height: 1.8;
}
.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content li { margin-bottom: 8px; }
.page-content strong { color: var(--text); font-weight: 600; }
.page-content a { color: var(--gold); text-decoration: underline; }
.page-content a:hover { color: var(--navy); }
.last-updated {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 32px;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-values {
  padding: 80px 0;
  background: var(--off-white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border-top: 4px solid var(--gold);
  transition: all var(--transition);
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.value-card .icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h3 { margin-bottom: 12px; }
.value-card p { font-size: 0.9rem; }

/* =============================================
   TOPICS PAGE
   ============================================= */
.topics-page {
  padding: 80px 0;
}
.topic-section {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.topic-section:last-child { border-bottom: none; }
.topic-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.topic-header .icon { font-size: 2rem; }
.topic-header h2 { font-size: 1.6rem; }
.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.preview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}
.preview-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.preview-card .meta {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.preview-card h4 { font-size: 0.95rem; line-height: 1.4; margin-bottom: 10px; }
.preview-card p { font-size: 0.82rem; }
.coming-soon-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 10px;
}

/* =============================================
   TRENDING PAGE
   ============================================= */
.trending-page { padding: 80px 0; }
.trending-list { display: flex; flex-direction: column; gap: 20px; max-width: 800px; }
.trending-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}
.trending-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.trending-rank {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  min-width: 40px;
}
.trending-content h3 { font-size: 1rem; margin-bottom: 6px; }
.trending-content p { font-size: 0.85rem; margin-bottom: 10px; }
.trending-meta {
  display: flex;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

/* =============================================
   NEWS PAGE
   ============================================= */
.news-page { padding: 80px 0; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.news-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.news-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.news-card-body { padding: 24px; }
.news-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 10px;
}
.news-card h3 { font-size: 1rem; line-height: 1.4; margin-bottom: 10px; }
.news-card p { font-size: 0.82rem; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .intro-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .preview-cards { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10,22,40,0.98);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    backdrop-filter: blur(16px);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { width: 100%; display: block; padding: 12px 16px; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-features { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { flex-direction: column; }
  .step-connector { transform: rotate(90deg); padding: 8px 0; }
  .about-teaser-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .nl-form { flex-direction: column; }
  .hero-content { margin-left: 0; padding: 120px 24px 80px; }
  .values-grid { grid-template-columns: 1fr; }
  .preview-cards { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .trending-item { flex-direction: column; gap: 12px; }
  .about-teaser-grid { gap: 36px; }
}

@media (max-width: 480px) {
  .topics-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
