/* SCROLL REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.reveal-fade.revealed {
  opacity: 1;
}

.stagger-grid > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-grid.revealed > *:nth-child(1) { transition-delay: 0ms; }
.stagger-grid.revealed > *:nth-child(2) { transition-delay: 100ms; }
.stagger-grid.revealed > *:nth-child(3) { transition-delay: 200ms; }
.stagger-grid.revealed > *:nth-child(4) { transition-delay: 300ms; }
.stagger-grid.revealed > *:nth-child(5) { transition-delay: 400ms; }
.stagger-grid.revealed > *:nth-child(6) { transition-delay: 500ms; }
.stagger-grid.revealed > *:nth-child(7) { transition-delay: 600ms; }
.stagger-grid.revealed > *:nth-child(8) { transition-delay: 700ms; }

.stagger-grid.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.stagger-row > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-row.revealed > *:nth-child(1) { transition-delay: 0ms; }
.stagger-row.revealed > *:nth-child(2) { transition-delay: 100ms; }
.stagger-row.revealed > *:nth-child(3) { transition-delay: 200ms; }
.stagger-row.revealed > *:nth-child(4) { transition-delay: 300ms; }
.stagger-row.revealed > *:nth-child(5) { transition-delay: 400ms; }
.stagger-row.revealed > *:nth-child(6) { transition-delay: 500ms; }
.stagger-row.revealed > *:nth-child(7) { transition-delay: 600ms; }
.stagger-row.revealed > *:nth-child(8) { transition-delay: 700ms; }

.stagger-row.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* SECTION BASE */
.section {
  padding: var(--sp-20) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--sp-12);
}

.section-tag {
  display: inline-block;
  padding: var(--sp-2) var(--sp-4);
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.3);
  border-radius: var(--radius-full);
  color: var(--color-tech-blue);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-4);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.125rem;
  color: rgba(224, 231, 255, 0.7);
  line-height: 1.7;
}

/* PLATFORM SECTION */
.platform-section {
  background: var(--color-deep-space);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.platform-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(224, 231, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 212, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.platform-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 50% 100%, rgba(0, 212, 255, 0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
  border-radius: inherit;
}

.platform-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15), 0 0 30px rgba(0, 212, 255, 0.15), 0 0 60px rgba(0, 212, 255, 0.1);
}

.platform-card:hover::before {
  opacity: 1;
}

.platform-card:hover::after {
  opacity: 1;
}

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

.platform-icon {
  font-size: 3rem;
  margin-bottom: var(--sp-4);
}

.platform-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  margin-bottom: var(--sp-3);
}

.platform-card p {
  font-size: var(--fs-sm);
  color: rgba(224, 231, 255, 0.6);
  line-height: 1.6;
}

/* PRODUCTS SECTION */
.products-section {
  background: linear-gradient(180deg, var(--color-deep-space) 0%, var(--color-navy) 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.product-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(224, 231, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  position: relative;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 212, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  border-radius: inherit;
}

.product-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 50% 100%, rgba(0, 212, 255, 0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
  border-radius: inherit;
}

.product-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15), 0 0 30px rgba(0, 212, 255, 0.15), 0 0 60px rgba(0, 212, 255, 0.1);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover::after {
  opacity: 1;
}

.product-badge {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  background: linear-gradient(135deg, var(--color-vivid-cyan) 0%, var(--color-tech-blue) 100%);
  color: var(--color-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  margin-bottom: var(--sp-2);
}

.product-desc {
  font-size: var(--fs-sm);
  color: rgba(224, 231, 255, 0.6);
  margin-bottom: var(--sp-4);
  line-height: 1.6;
}

.product-specs {
  list-style: none;
  margin: 0 0 var(--sp-6);
  padding: 0;
  flex-grow: 1;
}

.product-specs li {
  font-size: var(--fs-sm);
  color: rgba(224, 231, 255, 0.5);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid rgba(224, 231, 255, 0.05);
  display: flex;
  align-items: center;
}

.product-specs li::before {
  content: '✓';
  color: var(--color-vivid-cyan);
  margin-right: var(--sp-2);
  font-weight: var(--fw-bold);
}

/* WHY US SECTION */
.why-section {
  background: var(--color-navy);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.why-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(224, 231, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.why-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 102, 255, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.why-item::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 50% 100%, rgba(0, 212, 255, 0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
  border-radius: inherit;
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15), 0 0 30px rgba(0, 212, 255, 0.15), 0 0 60px rgba(0, 212, 255, 0.1);
}

.why-item:hover::before {
  opacity: 1;
}

.why-item:hover::after {
  opacity: 1;
}

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

.why-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: var(--fw-bold);
  background: linear-gradient(135deg, var(--color-vivid-cyan) 0%, var(--color-tech-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp-4);
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  margin-bottom: var(--sp-3);
}

.why-item p {
  font-size: var(--fs-sm);
  color: rgba(224, 231, 255, 0.6);
  line-height: 1.7;
}

/* TRUST SECTION */
.trust-section {
  background: linear-gradient(180deg, var(--color-navy) 0%, var(--color-deep-space) 100%);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.trust-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(224, 231, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.trust-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.06) 0%, rgba(0, 102, 255, 0.04) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15), 0 0 30px rgba(0, 212, 255, 0.1);
}

.trust-item:hover::before {
  opacity: 1;
}

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

.trust-icon {
  font-size: 3rem;
  margin-bottom: var(--sp-4);
}

.trust-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  margin-bottom: var(--sp-3);
}

.trust-item p {
  font-size: var(--fs-sm);
  color: rgba(224, 231, 255, 0.6);
  line-height: 1.7;
}

/* GLOBAL SECTION */
.global-section {
  background: var(--color-deep-space);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.location-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(224, 231, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-vivid-cyan) 0%, var(--color-tech-blue) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.location-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 102, 255, 0.3);
  transform: translateY(-4px);
}

.location-card:hover::before {
  opacity: 1;
}

.location-flag {
  font-size: 3rem;
  margin-bottom: var(--sp-3);
}

.location-status {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-4);
}

.status-operational {
  background: rgba(0, 212, 255, 0.15);
  color: var(--color-vivid-cyan);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.status-progress {
  background: rgba(0, 102, 255, 0.15);
  color: var(--color-tech-blue);
  border: 1px solid rgba(0, 102, 255, 0.3);
}

.status-planned {
  background: rgba(224, 231, 255, 0.1);
  color: rgba(224, 231, 255, 0.7);
  border: 1px solid rgba(224, 231, 255, 0.2);
}

.location-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  margin-bottom: var(--sp-3);
}

.location-card p {
  font-size: var(--fs-sm);
  color: rgba(224, 231, 255, 0.6);
  line-height: 1.7;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-deep-space) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.02em;
}

.cta-content p {
  font-size: 1.125rem;
  color: rgba(224, 231, 255, 0.7);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* FOOTER */
.footer {
  background: var(--color-deep-space);
  border-top: 1px solid rgba(224, 231, 255, 0.08);
  padding: var(--sp-12) 0 var(--sp-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: var(--sp-8);
  margin-bottom: var(--sp-12);
}

.footer-brand .nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--sp-3);
  display: block;
}

.footer-brand p {
  font-size: var(--fs-sm);
  color: rgba(224, 231, 255, 0.5);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  margin-bottom: var(--sp-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: var(--sp-2);
}

.footer-col a {
  font-size: var(--fs-sm);
  color: rgba(224, 231, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--color-vivid-cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(224, 231, 255, 0.08);
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer-bottom p {
  font-size: var(--fs-sm);
  color: rgba(224, 231, 255, 0.5);
}

.footer-links {
  display: flex;
  gap: var(--sp-6);
}

.footer-links a {
  font-size: var(--fs-sm);
  color: rgba(224, 231, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-vivid-cyan);
}

.social-links {
  display: flex;
  gap: var(--sp-4);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(224, 231, 255, 0.6);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: rgba(0, 102, 255, 0.2);
  color: var(--color-white);
}

/* Responsive */
@media (max-width: 1024px) {
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--sp-12) 0;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

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

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

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

/* LOGO SCROLL SECTION */
.logo-section {
  background: var(--color-navy);
  padding: var(--sp-8) 0;
  overflow: hidden;
  position: relative;
}

.logo-scroll-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.logo-scroll-track {
  display: flex;
  gap: var(--sp-12);
  animation: logo-scroll 40s linear infinite;
  width: max-content;
}

.logo-scroll-track:hover {
  animation-play-state: paused;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 64px;
  padding: var(--sp-4) var(--sp-6);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(224, 231, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.logo-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 212, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.logo-item:hover {
  border-color: rgba(0, 212, 255, 0.4);
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.15);
}

.logo-item:hover::before {
  opacity: 1;
}

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

.logo-text {
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: rgba(224, 231, 255, 0.7);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* NEWS/BLOG SECTION */
.news-section {
  background: linear-gradient(180deg, var(--color-deep-space) 0%, var(--color-navy) 100%);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.news-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(224, 231, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  position: relative;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.news-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 212, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  border-radius: inherit;
}

.news-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 50% 100%, rgba(0, 212, 255, 0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
  border-radius: inherit;
}

.news-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15), 0 0 30px rgba(0, 212, 255, 0.15), 0 0 60px rgba(0, 212, 255, 0.1);
}

.news-card:hover::before {
  opacity: 1;
}

.news-card:hover::after {
  opacity: 1;
}

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

.news-category {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-1) var(--sp-3);
  background: rgba(0, 102, 255, 0.12);
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: var(--radius-full);
  color: var(--color-tech-blue);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-4);
  width: max-content;
}

.news-category[data-category="partnership"] {
  background: rgba(0, 212, 170, 0.12);
  border-color: rgba(0, 212, 170, 0.2);
  color: var(--color-vivid-cyan);
}

.news-category[data-category="technology"] {
  background: rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.2);
  color: #A78BFA;
}

.news-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  margin-bottom: var(--sp-3);
  line-height: 1.4;
}

.news-excerpt {
  font-size: var(--fs-sm);
  color: rgba(224, 231, 255, 0.6);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
  flex-grow: 1;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(224, 231, 255, 0.08);
}

.news-date {
  font-size: var(--fs-xs);
  color: rgba(224, 231, 255, 0.4);
}

.news-link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-vivid-cyan);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  transition: all var(--transition-fast);
}

.news-link:hover {
  color: var(--color-tech-blue);
  gap: var(--sp-2);
}

.news-link svg {
  transition: transform var(--transition-fast);
}

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

@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .logo-scroll-track {
    gap: var(--sp-6);
  }
  
  .logo-item {
    min-width: 140px;
    height: 56px;
  }
  
  .logo-text {
    font-size: var(--fs-sm);
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
}

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