@font-face { font-family: 'Libre Franklin'; font-style: normal; font-weight: 400; font-display: swap; src: url(../presell/fonts/libre-franklin-400.ttf) format('truetype'); }
@font-face { font-family: 'Libre Franklin'; font-style: normal; font-weight: 700; font-display: swap; src: url(../presell/fonts/libre-franklin-700.ttf) format('truetype'); }
@font-face { font-family: 'Libre Franklin'; font-style: normal; font-weight: 800; font-display: swap; src: url(../presell/fonts/libre-franklin-800.ttf) format('truetype'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 400; font-display: swap; src: url(../presell/fonts/playfair-display-400.ttf) format('truetype'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 700; font-display: swap; src: url(../presell/fonts/playfair-display-700.ttf) format('truetype'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 900; font-display: swap; src: url(../presell/fonts/playfair-display-900.ttf) format('truetype'); }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #2563eb;
  --purple: #7c3aed;
  --dark: #1a1a2e;
  --text: #2a2a2a;
  --gray: #6b7280;
  --light-gray: #9ca3af;
  --border: #e5e7eb;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --gold: #f5b800;
  --font-body: 'Libre Franklin', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --max-w: 1200px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
  overflow: visible;
}

.header-wrapper.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(99,102,241,0.25);
  transition: transform 0.2s;
}

.site-logo:hover .logo-icon { transform: scale(1.06); }

.logo-icon i { color: var(--white); font-size: 16px; }

.logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  letter-spacing: -0.3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  padding: 8px 14px;
  white-space: nowrap;
  letter-spacing: 0.2px;
  line-height: 1;
  transition: color 0.2s, background 0.2s;
  position: relative;
  border-radius: 8px;
}

.main-nav a:hover {
  color: var(--blue);
  background: rgba(37,99,235,0.06);
}

.main-nav a.active {
  color: var(--blue);
  background: rgba(37,99,235,0.08);
  font-weight: 700;
}

.main-nav .nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: var(--white);
  font-weight: 700;
  border-radius: 8px;
  padding: 8px 18px;
  margin-left: 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.main-nav .nav-cta:hover {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(99,102,241,0.3);
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 10001;
  border-radius: 10px;
  transition: background 0.2s;
}

.hamburger-btn:hover { background: rgba(0,0,0,0.04); }

.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
  border-radius: 2px;
}

.hamburger-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; }
.hamburger-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: calc(100vh - 60px);
  height: calc(100dvh - 60px);
  background: var(--white);
  z-index: 99999;
  padding: 16px 20px;
  overflow-y: auto;
}

.mobile-menu.open { display: flex; flex-direction: column; }

.mobile-menu a {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  padding: 14px 12px;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.2px;
}

.mobile-menu a:hover {
  color: var(--blue);
  background: rgba(37,99,235,0.06);
}

.mobile-menu .mob-cta {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: var(--white);
  font-weight: 700;
  text-align: center;
  justify-content: center;
  border-radius: 12px;
  margin-top: 8px;
  padding: 16px 12px;
}


.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 40%, #1e3a5f 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(99, 102, 241, 0.4);
  border-radius: 50%;
  animation: floatParticle 8s infinite ease-in-out;
}

.hero-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
.hero-particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 1s; animation-duration: 9s; }
.hero-particle:nth-child(3) { left: 45%; top: 30%; animation-delay: 2s; animation-duration: 6s; }
.hero-particle:nth-child(4) { left: 65%; top: 70%; animation-delay: 0.5s; animation-duration: 8s; }
.hero-particle:nth-child(5) { left: 80%; top: 15%; animation-delay: 3s; animation-duration: 10s; }
.hero-particle:nth-child(6) { left: 90%; top: 50%; animation-delay: 1.5s; animation-duration: 7s; }
.hero-particle:nth-child(7) { left: 15%; top: 80%; animation-delay: 4s; animation-duration: 9s; }
.hero-particle:nth-child(8) { left: 55%; top: 10%; animation-delay: 2.5s; animation-duration: 11s; }

@keyframes floatParticle {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  25% { transform: translate(30px, -40px) scale(1.5); opacity: 0.7; }
  50% { transform: translate(-20px, -80px) scale(1); opacity: 0.5; }
  75% { transform: translate(40px, -30px) scale(1.8); opacity: 0.6; }
}

.hero-neural {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(37, 99, 235, 0.3) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: #a5b4fc;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #818cf8, #a78bfa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 36px;
  max-width: 520px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: var(--white);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.hero-visual {
  position: relative;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-visual-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  position: relative;
}

.hero-brain-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  animation: pulse 3s infinite ease-in-out;
}

.hero-brain-icon i { color: var(--white); font-size: 36px; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
  50% { box-shadow: 0 0 0 20px rgba(99, 102, 241, 0); }
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: #a5b4fc;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 3px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: 3px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.6;
  max-width: 600px;
}

.featured-section {
  padding: 80px 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.featured-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.featured-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.featured-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.featured-card:hover .featured-card-img img { transform: scale(1.05); }

.featured-card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--blue);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 12px;
  border-radius: 6px;
}

.featured-card-body { padding: 22px; }

.featured-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 10px;
}

.featured-card-excerpt {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 14px;
}

.featured-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--light-gray);
}

.featured-card-link {
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.featured-card-link:hover { gap: 10px; }


.topics-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.topic-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.topic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.topic-card:hover::before { transform: scaleX(1); }

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border-color: rgba(99, 102, 241, 0.2);
}

.topic-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.topic-icon i { color: var(--blue); font-size: 22px; }

.topic-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.topic-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.topic-link {
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.topic-link:hover { gap: 10px; }

.latest-section {
  padding: 80px 0;
}

.latest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.latest-card {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.latest-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.latest-card-img {
  width: 140px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}

.latest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-card-body { flex: 1; min-width: 0; }

.latest-card-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.latest-card-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 8px;
}

.latest-card-date {
  font-size: 12px;
  color: var(--light-gray);
}

.about-preview {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  color: var(--white);
}

.about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-preview .section-label { color: #a5b4fc; }
.about-preview .section-label::before { background: linear-gradient(135deg, #818cf8, #a78bfa); }
.about-preview .section-title { color: var(--white); }

.about-preview-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #94a3b8;
  margin-bottom: 24px;
}

.about-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a5b4fc;
  font-weight: 700;
  font-size: 14px;
  transition: gap 0.2s;
}

.about-preview-link:hover { gap: 12px; }

.about-preview-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: background 0.3s;
}

.about-feature:hover { background: rgba(255, 255, 255, 0.08); }

.about-feature i {
  font-size: 28px;
  color: #a5b4fc;
  margin-bottom: 14px;
}

.about-feature h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.about-feature p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

.editors-section {
  padding: 80px 0;
}

.editors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.editor-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.editor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.editor-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.editor-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.editor-card:hover .editor-card-img img { transform: scale(1.05); }

.editor-card-body { padding: 16px; }

.editor-card-cat {
  font-size: 10px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.editor-card-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.site-footer {
  background: linear-gradient(180deg, #0c1222 0%, #0f172a 100%);
  color: #94a3b8;
  padding: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-col .logo-text { color: var(--white); }
.footer-brand-col .logo-icon { box-shadow: 0 2px 8px rgba(99,102,241,0.3); }

.footer-brand-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: #94a3b8;
  padding: 6px 0;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-col a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-featured {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-featured__label {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer-featured__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 20px;
  transition: background 0.2s, border-color 0.2s;
}

.footer-featured__link:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(99,102,241,0.3);
}

.footer-featured__link i {
  color: #818cf8;
  font-size: 18px;
}

.footer-featured__link span {
  font-size: 14px;
  font-weight: 600;
  color: #cbd5e1;
}

.footer-disclosure-bar {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-disclosure-text {
  font-size: 11px;
  line-height: 1.8;
  color: #334155;
  max-width: 900px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #334155;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #475569;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: #a5b4fc; }


.page-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 40%, #1e3a5f 100%);
  padding: 100px 0 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 17px;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.breadcrumb {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 20px;
}

.breadcrumb a { color: #a5b4fc; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; }

.article-page { padding: 60px 0; }

.article-page-inner {
  max-width: 800px;
  margin: 0 auto;
}

.article-page-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.article-page-cat {
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 6px;
}

.article-page-date {
  font-size: 13px;
  color: var(--light-gray);
}

.article-page-author {
  font-size: 13px;
  color: var(--gray);
}

.article-body h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin: 40px 0 16px;
  line-height: 1.3;
}

.article-body h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin: 32px 0 12px;
}

.article-body p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 18px;
}

.article-body ul, .article-body ol {
  margin: 16px 0;
  padding-left: 24px;
}

.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }

.article-body li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 8px;
}

.article-body blockquote {
  border-left: 4px solid var(--blue);
  margin: 28px 0;
  padding: 20px 28px;
  background: var(--bg-light);
  font-style: italic;
  color: #555;
  border-radius: 0 10px 10px 0;
  font-size: 17px;
  line-height: 1.7;
}

.article-body img {
  width: 100%;
  border-radius: 12px;
  margin: 24px 0;
}

.article-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.article-tag {
  background: var(--bg-light);
  color: var(--gray);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.blog-grid-section { padding: 60px 0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.category-sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  padding: 60px 0;
}

.sidebar-widget {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-widget h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue);
}

.sidebar-widget a {
  display: block;
  font-size: 14px;
  color: var(--gray);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.sidebar-widget a:last-child { border-bottom: none; }
.sidebar-widget a:hover { color: var(--blue); }

.contact-section { padding: 60px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.contact-info-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 20px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i { color: var(--blue); font-size: 18px; }

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.contact-form {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.legal-page { padding: 60px 0; }

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin: 36px 0 14px;
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 28px 0 10px;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 14px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin: 12px 0;
}

.legal-content li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 6px;
}

.legal-content a { color: var(--blue); text-decoration: underline; }

.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.error-page h1 {
  font-family: var(--font-heading);
  font-size: 120px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.error-page h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.error-page p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 32px;
}

.error-page .hero-cta { display: inline-flex; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 24px;
  transition: gap 0.2s;
}

.back-link:hover { gap: 12px; }


@media (max-width: 1024px) {
  .main-nav a { font-size: 12px; padding: 7px 10px; }
  .main-nav .nav-cta { padding: 7px 14px; font-size: 11px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-title { font-size: 40px; }
  .hero-visual { display: none; }
  .hero { min-height: 60vh; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
  .editors-grid { grid-template-columns: repeat(2, 1fr); }
  .about-preview-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .category-sidebar-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger-btn { display: flex; }
  .header-inner { height: 60px; }
  .mobile-menu { top: 60px; }
  .logo-text { font-size: 17px; }
  .hero { min-height: auto; padding: 80px 0 60px; }
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  .hero-badge { font-size: 11px; }
  .featured-grid { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: 1fr; }
  .latest-grid { grid-template-columns: 1fr; }
  .latest-card { flex-direction: column; }
  .latest-card-img { width: 100%; height: 180px; }
  .editors-grid { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 28px; }
  .page-hero { padding: 80px 0 40px; }
  .page-hero h1 { font-size: 32px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .about-preview-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .hero-stats { grid-template-columns: 1fr; }
  .editors-grid { grid-template-columns: 1fr; }
  .hero-cta { width: 100%; justify-content: center; }
}


/* =============================================
   HOMEPAGE REDESIGN 2026
   ============================================= */

/* --- HERO --- */
.hp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--dark);
  overflow: hidden;
}

.hp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hp-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  animation: orbFloat 12s ease-in-out infinite alternate;
}

.hp-hero__orb--1 {
  width: 500px; height: 500px;
  background: var(--blue);
  top: -10%; left: -5%;
}

.hp-hero__orb--2 {
  width: 400px; height: 400px;
  background: var(--purple);
  bottom: -15%; right: -5%;
  animation-delay: -4s;
}

.hp-hero__orb--3 {
  width: 300px; height: 300px;
  background: #818cf8;
  top: 40%; left: 55%;
  animation-delay: -8s;
  opacity: 0.2;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.12); }
}

.hp-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #a5b4fc;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
  animation: fadeInUp 0.7s ease-out both;
}

.hp-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 28px;
  animation: fadeInUp 0.7s ease-out 0.15s both;
}

.hp-hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hp-hero__desc {
  font-size: 18px;
  line-height: 1.7;
  color: #94a3b8;
  max-width: 580px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.7s ease-out 0.3s both;
}

.hp-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease-out 0.45s both;
}

.hp-hero__btn {
  padding: 15px 32px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.hp-hero__btn--primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: var(--white);
}

.hp-hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.hp-hero__btn--ghost {
  background: rgba(255,255,255,0.06);
  color: #cbd5e1;
  border: 1px solid rgba(255,255,255,0.12);
}

.hp-hero__btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.hp-hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hp-hero__scroll-hint span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  position: relative;
}

.hp-hero__scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #a5b4fc;
  border-radius: 4px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(14px); }
}

/* --- TICKER --- */
.hp-ticker {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
}

.hp-ticker__track {
  display: inline-flex;
  animation: tickerScroll 30s linear infinite;
}

.hp-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 36px;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.hp-ticker__item:hover { opacity: 1; }

.hp-ticker__item i { font-size: 14px; }

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- SPOTLIGHT --- */
.hp-spotlight {
  padding: 100px 0;
  background: var(--bg-light);
}

.hp-spotlight__card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}

.hp-spotlight__img {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.hp-spotlight__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.hp-spotlight__card:hover .hp-spotlight__img img {
  transform: scale(1.04);
}

.hp-spotlight__body {
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hp-spotlight__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 6px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  width: fit-content;
}

.hp-spotlight__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 18px;
}

.hp-spotlight__title a { transition: color 0.2s; }
.hp-spotlight__title a:hover { color: var(--blue); }

.hp-spotlight__excerpt {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 28px;
}

.hp-spotlight__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--light-gray);
}

.hp-spotlight__meta i { margin-right: 6px; }

.hp-spotlight__read {
  color: var(--blue);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.hp-spotlight__read:hover { gap: 12px; }

/* --- BENTO GRID --- */
.hp-bento {
  padding: 100px 0;
}

.hp-bento__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.hp-bento__heading {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  color: var(--dark);
}

.hp-bento__all {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.hp-bento__all:hover { gap: 12px; }

.hp-bento__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 20px;
}

.hp-bento__item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: block;
}

.hp-bento__item--tall {
  grid-row: 1 / 3;
}

.hp-bento__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.hp-bento__item:hover img { transform: scale(1.06); }

.hp-bento__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
}

.hp-bento__tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  padding: 4px 12px;
  border-radius: 5px;
  width: fit-content;
  margin-bottom: 10px;
}

.hp-bento__overlay h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}

.hp-bento__item--tall .hp-bento__overlay h3 {
  font-size: 26px;
}

.hp-bento__date {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* --- LATEST NUMBERED LIST --- */
.hp-latest {
  padding: 100px 0;
  background: var(--bg-light);
}

.hp-latest__header {
  margin-bottom: 48px;
}

.hp-latest__heading {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 8px;
}

.hp-latest__sub {
  font-size: 16px;
  color: var(--gray);
}

.hp-latest__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hp-latest__row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  border-radius: 0;
}

.hp-latest__row:first-child {
  border-top: 1px solid var(--border);
}

.hp-latest__row:hover {
  background: rgba(37, 99, 235, 0.03);
}

.hp-latest__num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  color: var(--border);
  min-width: 56px;
  text-align: center;
  transition: color 0.2s;
}

.hp-latest__row:hover .hp-latest__num {
  color: var(--blue);
}

.hp-latest__thumb {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.hp-latest__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-latest__info {
  flex: 1;
  min-width: 0;
}

.hp-latest__cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  display: block;
}

.hp-latest__info h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.hp-latest__date {
  font-size: 13px;
  color: var(--light-gray);
  white-space: nowrap;
  min-width: 60px;
  text-align: right;
}

.hp-latest__arrow {
  color: var(--border);
  font-size: 14px;
  transition: color 0.2s, transform 0.2s;
}

.hp-latest__row:hover .hp-latest__arrow {
  color: var(--blue);
  transform: translateX(4px);
}

/* --- SPLIT ABOUT --- */
.hp-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.hp-about__left {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  display: flex;
  align-items: center;
  padding: 60px;
}

.hp-about__content {
  max-width: 480px;
  margin-left: auto;
}

.hp-about__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #a5b4fc;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.hp-about__title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hp-about__content p {
  font-size: 16px;
  line-height: 1.8;
  color: #94a3b8;
  margin-bottom: 28px;
}

.hp-about__pillars {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hp-about__pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #cbd5e1;
}

.hp-about__pillar i {
  color: #818cf8;
  font-size: 16px;
}

.hp-about__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a5b4fc;
  font-weight: 700;
  font-size: 14px;
  transition: gap 0.2s;
}

.hp-about__link:hover { gap: 12px; }

.hp-about__right {
  background: var(--bg-light);
  padding: 40px;
  display: flex;
  align-items: center;
}

.hp-about__mosaic {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.hp-about__pick {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hp-about__pick:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.hp-about__pick img {
  width: 90px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.hp-about__pick span {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

/* --- HOMEPAGE RESPONSIVE --- */
@media (max-width: 1024px) {
  .hp-spotlight__card { grid-template-columns: 1fr; }
  .hp-spotlight__img { min-height: 300px; }
  .hp-spotlight__body { padding: 36px; }
  .hp-bento__grid { grid-template-rows: 200px 200px; }
  .hp-about { grid-template-columns: 1fr; }
  .hp-about__left { padding: 50px 30px; }
  .hp-about__content { margin: 0 auto; }
  .hp-about__right { padding: 30px; }
}

@media (max-width: 768px) {
  .hp-hero__inner { padding-top: 80px; padding-bottom: 60px; }
  .hp-hero__scroll-hint { display: none; }
  .hp-spotlight { padding: 60px 0; }
  .hp-spotlight__title { font-size: 24px; }
  .hp-spotlight__body { padding: 28px 24px; }
  .hp-bento { padding: 60px 0; }
  .hp-bento__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .hp-bento__item--tall { grid-row: auto; }
  .hp-bento__item { min-height: 220px; }
  .hp-latest { padding: 60px 0; }
  .hp-latest__row { flex-wrap: wrap; gap: 14px; }
  .hp-latest__num { font-size: 28px; min-width: 40px; }
  .hp-latest__thumb { width: 60px; height: 60px; }
  .hp-latest__date { display: none; }
  .hp-latest__arrow { display: none; }
  .hp-about__left { padding: 40px 20px; }
  .hp-about__right { padding: 24px 20px; }
  .hp-about__title { font-size: 28px; }
  .hp-about__pillars { flex-direction: column; gap: 12px; }
  .hp-bento__heading { font-size: 28px; }
  .hp-latest__heading { font-size: 28px; }
}

@media (max-width: 480px) {
  .hp-hero__actions { flex-direction: column; align-items: center; }
  .hp-hero__btn { width: 100%; justify-content: center; }
  .hp-latest__info h3 { font-size: 16px; }
  .hp-about__pick img { width: 70px; height: 56px; }
  .hp-about__pick span { font-size: 14px; }
}
