/* 
 * MMKU Landing Page - Premium Design System Stylesheet
 * Brand Accent: #0085FF
 * Background: #FFFFFF
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,700&display=swap');

:root {
  /* Colors */
  --color-bg: #FFFFFF;
  --color-text: #111111;
  --color-text-muted: #555555;
  --color-primary: #0085FF;
  --color-primary-rgb: 0, 133, 255;
  --color-secondary-glow: #4DA8FF;
  --color-light-glow: #D9EEFF;
  --color-light-border: rgba(0, 133, 255, 0.08);
  --color-card-bg: rgba(255, 255, 255, 0.7);

  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 133, 255, 0.02);
  --shadow-md: 0 12px 30px rgba(0, 133, 255, 0.04);
  --shadow-lg: 0 20px 40px rgba(0, 133, 255, 0.06);
  --shadow-hover: 0 30px 60px rgba(0, 133, 255, 0.1);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
}

/* Base Grid & Background Effects */
.bg-wrapper {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background-color: #FFFFFF;
}

.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 133, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: -1;
}

/* Blurred Ambient Lighting */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
  transition: transform 1s ease, opacity 1s ease;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-light-glow) 0%, var(--color-secondary-glow) 100%);
  top: -150px;
  left: -100px;
  animation: orb-drift-1 25s ease-in-out infinite alternate;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-light-glow) 0%, var(--color-primary) 100%);
  bottom: 10%;
  right: -100px;
  animation: orb-drift-2 30s ease-in-out infinite alternate;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-light-glow) 0%, var(--color-secondary-glow) 100%);
  top: 40%;
  left: 40%;
  animation: orb-drift-3 20s ease-in-out infinite alternate;
}

@keyframes orb-drift-1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, 50px) scale(1.1); }
  100% { transform: translate(-40px, 90px) scale(0.95); }
}

@keyframes orb-drift-2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, -90px) scale(0.9); }
  100% { transform: translate(40px, -30px) scale(1.05); }
}

@keyframes orb-drift-3 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(100px, -80px) scale(1.15); }
  100% { transform: translate(-70px, 40px) scale(0.9); }
}

/* Glassmorphism Styles */
.glass {
  background: var(--color-card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-light-border);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), 
              border-color 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), 
              box-shadow 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--color-light-border);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled .nav-container {
  padding: 6px 0;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled .logo-img {
  height: 24px;
}

.logo-wrapper:hover .logo-img {
  transform: rotate(-10deg) scale(1.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover {
  color: var(--color-text);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Premium Buttons (Adapted from SalladShooter on Uiverse.io to MMKU Light Brand) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  padding: 0.8em 1.8em;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 0.6em;
  border: 0;
  white-space: nowrap;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.btn-primary {
  color: white;
  background: #0085FF;
  background-size: cover;
  background-blend-mode: overlay;
  outline: 0.12em solid rgba(0, 133, 255, 0.25);
  box-shadow: 0 0 1em 0.1em rgba(0, 133, 255, 0.15);
}

.btn-primary:hover {
  transform: scale(1.1);
  box-shadow: 0 0 1em 0.45em rgba(0, 133, 255, 0.2);
  background: radial-gradient(
    circle at bottom,
    rgba(77, 168, 255, 0.6) 10%,
    #0085FF 70%
  );
  outline: 0;
}

.btn-secondary {
  color: #0085FF;
  background: #FFFFFF;
  background-size: cover;
  background-blend-mode: overlay;
  outline: 0.12em solid rgba(0, 133, 255, 0.15);
  box-shadow: 0 0 1em 0.05em rgba(0, 0, 0, 0.03);
}

.btn-secondary:hover {
  transform: scale(1.1);
  box-shadow: 0 0 1em 0.45em rgba(0, 133, 255, 0.1);
  background: radial-gradient(
    circle at bottom,
    rgba(217, 238, 255, 0.8) 10%,
    #FFFFFF 70%
  );
  outline: 0;
}

/* Navigation Header Button Scaling */
.header .btn {
  padding: 0.5em 1.2em;
  font-size: 0.8rem;
  border-radius: 0.5em;
}

.btn-text {
  color: var(--color-text-muted);
  font-weight: 500;
}

.btn-text:hover {
  color: var(--color-text);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--color-text);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  z-index: 10;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: var(--color-light-glow);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 24px;
  border: 1px solid rgba(0, 133, 255, 0.15);
  box-shadow: 0 2px 8px rgba(0, 133, 255, 0.05);
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.hero-creativity {
  font-style: italic;
  background: linear-gradient(135deg, #0085FF 10%, #7622FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 4px;
  position: relative;
  text-shadow: 0 0 40px rgba(0, 133, 255, 0.08);
}

.hero-technology {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
  padding: 0 4px;
  background: linear-gradient(90deg, #0085FF 0%, #4DA8FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-technology::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0085FF 0%, rgba(0, 133, 255, 0) 100%);
  border-radius: 2px;
}

.hero-subheadline {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  max-width: 650px;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 64px;
}

.hero-ctas .btn {
  padding: 16px 36px;
  font-size: 1rem;
}

/* Premium Visual Elements */
.hero-glow-container {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-radial-glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(0, 133, 255, 0.06) 0%, rgba(77, 168, 255, 0.02) 50%, transparent 70%);
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

/* Ecosystem Section */
.ecosystem {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.75rem;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

/* Floating Card Styles */
.card-wrapper {
  position: relative;
}

.ecosystem-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 40px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 2;
  border-radius: 24px;
}

.ecosystem-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 133, 255, 0.2);
  box-shadow: var(--shadow-hover);
}

/* Card Glow Effect */
.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 133, 255, 0.06), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
}

.ecosystem-card:hover .card-glow {
  opacity: 1;
}

.card-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.card-logo-symbol {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 133, 255, 0.05);
  color: var(--color-primary);
  border: 1px solid rgba(0, 133, 255, 0.1);
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.ecosystem-card:hover .card-logo-symbol {
  background: var(--color-primary);
  color: #FFFFFF;
  transform: scale(1.05);
}

.card-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.card-logo-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--color-text);
}

.card-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  flex-grow: 1;
}

/* Floating Card Visual Demos (Built with CSS) */
.card-visual {
  height: 160px;
  width: 100%;
  border-radius: 16px;
  background: rgba(0, 133, 255, 0.02);
  border: 1px solid rgba(0, 133, 255, 0.04);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ecosystem-card:hover .card-visual {
  background: rgba(0, 133, 255, 0.04);
  border-color: rgba(0, 133, 255, 0.1);
}

/* Specific product visual implementations */
.visual-fillio .circle-mesh {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px dashed rgba(0, 133, 255, 0.2);
  animation: spin-slow 20s linear infinite;
}

.visual-fillio .pulse-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-secondary-glow) 0%, rgba(0, 133, 255, 0.4) 100%);
  animation: pulse 3s infinite ease-in-out;
}

.visual-kertasonline .doc-stack {
  position: relative;
  width: 70px;
  height: 90px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1.5px solid rgba(0, 133, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 133, 255, 0.04);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.ecosystem-card:hover .visual-kertasonline .doc-stack {
  transform: rotate(0deg) scale(1.05);
}

.visual-kertasonline .doc-line {
  height: 4px;
  background-color: var(--color-light-glow);
  border-radius: 2px;
  width: 100%;
}

.visual-kertasonline .doc-line-short {
  width: 60%;
}

.visual-kertasonline .doc-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 133, 255, 0.2);
}

.visual-lemua .node-tree {
  display: flex;
  align-items: center;
  gap: 20px;
}

.visual-lemua .node {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 2px solid var(--color-primary);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 10px rgba(0, 133, 255, 0.1);
}

.visual-lemua .node-center {
  width: 28px;
  height: 28px;
  background-color: var(--color-primary);
  border: none;
  box-shadow: 0 0 20px rgba(0, 133, 255, 0.3);
}

.visual-lemua .node-line {
  position: absolute;
  height: 2px;
  width: 80px;
  background: linear-gradient(90deg, rgba(0,133,255,0.1), var(--color-primary), rgba(0,133,255,0.1));
  z-index: 1;
}

.card-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary);
  margin-top: auto;
}

.card-link svg {
  transition: transform 0.3s ease;
}

.ecosystem-card:hover .card-link svg {
  transform: translateX(4px);
}

/* Vision Section */
.vision {
  padding: 140px 0;
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(217, 238, 255, 0.3) 0%, transparent 60%);
  border-top: 1px solid var(--color-light-border);
  border-bottom: 1px solid var(--color-light-border);
}

.vision-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.vision-title-sub {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  display: block;
}

.vision h2 {
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 40px;
  letter-spacing: -0.03em;
}

.vision-highlight {
  position: relative;
  display: inline-block;
  color: var(--color-primary);
}

.vision-highlight::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--color-light-glow);
  z-index: -1;
  border-radius: 4px;
}

/* News & Announcements Section (Informasi Terbaru) */
.news {
  padding: 100px 0;
  position: relative;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.news-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 20px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 133, 255, 0.18);
  box-shadow: var(--shadow-lg);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.news-category {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-primary);
  background-color: var(--color-light-glow);
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-date {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.news-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 12px;
}

.news-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: auto;
  transition: color 0.3s ease;
}

.news-link svg {
  transition: transform 0.3s ease;
}

.news-card:hover .news-link svg {
  transform: translateX(4px);
}

/* Statistics Grid */
.stats {
  padding: 80px 0;
  border-top: 1px solid var(--color-light-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

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

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

/* Footer Section */
.footer {
  background-color: #FAFAFA;
  border-top: 1px solid var(--color-light-border);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 320px;
}

.footer-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.footer-links-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.footer-link:hover {
  color: var(--color-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--color-light-border);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

/* Animations */
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 0.8; }
  100% { transform: scale(0.95); opacity: 0.5; }
}

/* Scroll Animation Hooks */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Drawer styles */
.drawer {
  position: fixed;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer.open {
  transform: translateX(0);
}

.drawer-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.drawer-link:hover {
  color: var(--color-primary);
}

/* Responsiveness */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  .showcase-grid, .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.75rem;
  }
  .nav-links, .nav-actions {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .showcase-grid, .news-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
