*, *::before, *::after { box-sizing: border-box; }

:root { --gutter: 2rem; }
@media (max-width: 600px) { :root { --gutter: 1rem; } }

body {
  margin: 0;
  font-family: 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  background: #000;
  color: #fff;
}

.content-wrap {
  background: #000;
  overflow: clip;
}

header {
  min-height: 0;
  padding: 80px 0;
  display: grid;
  align-content: center;
  padding-left: 48px;
}

a { color: white; }

.fluid {
  font-size: clamp(4rem, 12vw, 12rem);
  line-height: 0.6;
  margin: 0;
}
h2.fluid {
  font-size: clamp(4rem, 12vw, 12rem);
  line-height: 0.6;
  padding-top: 0;
}

/* Sticky scroll section */
main section:first-of-type { min-height: 240vh; }

.content {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  place-items: center;
  position: sticky;
  top: 0;
  overflow: hidden;
}

main section:last-of-type {
  min-height: 0;
  padding: 80px 0;
  display: grid;
  place-items: center;
}

/* Grid */
.grid {
  --offset: 0;
  --gap: clamp(10px, 7.35vw, 80px);
  width: 1600px;
  max-width: calc(100% - (2 * var(--gutter)));
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: var(--gap);
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
    --offset: -1;
  }
  .grid > .layer:nth-of-type(1) { display: none; }
}

/* Layers */
.grid > .layer {
  display: grid;
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  grid-template-columns: subgrid;
  grid-template-rows: subgrid;
  transform-origin: center center;
  /* start hidden — JS will animate these in */
  opacity: 0;
  transform: scale(0);
}

.grid > .layer:nth-of-type(1) div:nth-of-type(odd)  { grid-column: 1; }
.grid > .layer:nth-of-type(1) div:nth-of-type(even) { grid-column: -2; }

.grid > .layer:nth-of-type(2) div:nth-of-type(odd)  { grid-column: calc(2 + var(--offset)); }
.grid > .layer:nth-of-type(2) div:nth-of-type(even) { grid-column: calc(-3 - var(--offset)); }

.grid > .layer:nth-of-type(3) div:first-of-type {
  grid-column: calc(3 + var(--offset));
  grid-row: 1;
}
.grid > .layer:nth-of-type(3) div:last-of-type {
  grid-column: calc(3 + var(--offset));
  grid-row: -1;
}

/* Images */
.grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
}

/* Scaler */
.grid .scaler {
  grid-area: 2 / calc(3 + var(--offset));
  position: relative;
  z-index: 2;
}

.scaler img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  filter: grayscale(100%);
}

/* ===========================
   Navbar
=========================== */
.navbar-custom {
  background-color: #000;
}

.navbar-brand img {
  width: 55px;
  height: 55px;
}

.navbar-nav .nav-link {
  color: white;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #f0f0f0;
}

.nav-link i {
  color: white !important;
}



/* ===========================
   News Section
=========================== */
#news {
  background: #000;
  padding: 80px 40px;
  overflow: hidden;
}

.news-header {
  text-align: left;
  padding-left: 8px;
  margin-bottom: 48px;
}

.news-title {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #666;
  letter-spacing: 0.2em;
  margin: 0 0 12px 0;
}

.news-underline {
  width: 48px;
  height: 2px;
  background: #fff;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

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

.news-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(60px);
  transition: transform 0.1s, box-shadow 0.3s;
}

.news-card:hover {
  box-shadow: 0 8px 40px rgba(255,255,255,0.06);
}

.news-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card-img img {
  transform: scale(1.04);
}

.news-card-body {
  padding: 24px;
  flex: 1;
}

.news-tag {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: #666;
  display: block;
  margin-bottom: 10px;
}

.news-card-body h3 {
  font-size: 1.1rem;
  color: #fff;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.news-card-body p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.news-read-more {
  font-size: 0.8rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #444;
  padding-bottom: 2px;
  transition: border-color 0.3s, color 0.3s;
}

.news-read-more:hover {
  color: #ccc;
  border-color: #ccc;
  text-decoration: none;
}

.news-card-footer {
  padding: 12px 24px;
  font-size: 0.75rem;
  color: #444;
  border-top: 1px solid #1e1e1e;
}

/* ===========================
   Footer
=========================== */
footer {
  background: #000;
  border-top: 1px solid #1e1e1e;
  padding: 48px 40px 24px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.footer-brand img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  opacity: 0.8;
}

.footer-brand p {
  font-size: 0.8rem;
  color: #444;
  margin: 0;
  max-width: 260px;
  line-height: 1.6;
}

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

.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: #666;
  margin: 0 0 16px 0;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: #444;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: #444;
  font-size: 1rem;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-social a:hover {
  color: #fff;
}
/* ===========================
   About Page
=========================== */

/* Hero */
.about-hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 40px 60px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.about-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: #555;
  margin: 0 0 24px 0;
  animation: fadeUp 0.8s ease both;
}

.about-headline {
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.9;
  margin: 0 0 32px 0;
  font-weight: 700;
  color: #fff;
  animation: fadeUp 0.8s 0.1s ease both;
}

.about-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #666;
  max-width: 520px;
  line-height: 1.7;
  margin: 0;
  animation: fadeUp 0.8s 0.2s ease both;
}

.about-hero-line {
  width: 100%;
  height: 1px;
  background: #1a1a1a;
  margin-top: 60px;
  animation: expandWidth 1s 0.4s ease both;
  transform-origin: left;
}

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

@keyframes expandWidth {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Sections */
.about-section {
  padding: 80px 40px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.about-section.revealed {
  opacity: 1;
  transform: translateY(0);
}

.about-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .about-section-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-hero { padding: 60px 24px 40px; }
  .about-section { padding: 60px 24px; }
}

.about-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: #444;
  padding-top: 8px;
}

/* Mission */
.about-text-block h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  line-height: 1.2;
  margin: 0 0 24px 0;
  font-weight: 600;
}

.about-text-block p {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.8;
  max-width: 600px;
}

/* Divider */
.about-divider {
  height: 1px;
  background: #1a1a1a;
  margin: 0 40px;
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: opacity 0.6s ease, transform 0.8s ease;
}

.about-divider.revealed {
  opacity: 1;
  transform: scaleX(1);
}

/* Pillars */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .about-pillars { grid-template-columns: 1fr; }
}

.pillar {
  background: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  padding: 32px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s;
}

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

.pillar:hover {
  border-color: #333;
}

.pillar-icon {
  font-size: 1.4rem;
  color: #444;
  margin-bottom: 20px;
}

.pillar h3 {
  font-size: 1rem;
  color: #fff;
  margin: 0 0 12px 0;
  font-weight: 600;
}

.pillar p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
}

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

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #555;
}

/* Values */
.about-values-inner {
  align-items: start;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.value-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid #1a1a1a;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.value-row:first-child {
  border-top: 1px solid #1a1a1a;
}

.value-row.revealed {
  opacity: 1;
  transform: translateX(0);
}

.value-num {
  font-size: 0.7rem;
  color: #333;
  letter-spacing: 0.1em;
  padding-top: 4px;
}

.value-row h3 {
  font-size: 1rem;
  color: #fff;
  margin: 0 0 8px 0;
  font-weight: 600;
}

.value-row p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* CTA */
.about-cta {
  padding: 100px 40px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.about-cta.revealed {
  opacity: 1;
  transform: translateY(0);
}

.about-cta h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  margin: 0 0 40px 0;
  font-weight: 600;
}

.about-cta-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.cta-btn:hover {
  background: #ddd;
  color: #000;
  text-decoration: none;
}

.cta-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid #333;
}

.cta-btn-outline:hover {
  background: #111;
  color: #fff;
}

/* ===========================
   Team Section
=========================== */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.team-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  background: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  padding: 40px;
  opacity: 0;
  transform: translateY(40px);
  transition: border-color 0.3s;
}

.team-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.team-card:hover {
  border-color: #2a2a2a;
}

@media (max-width: 768px) {
  .team-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%);
  transition: filter 0.4s ease;
}

.team-card:hover .team-photo img {
  filter: grayscale(0%);
}

.team-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.team-info h3 {
  font-size: 1.3rem;
  color: #fff;
  margin: 0;
  font-weight: 600;
}

.team-role {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: #555;
}

.team-info p {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.8;
  margin: 8px 0 0 0;
  max-width: 580px;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.team-tags span {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: #555;
  border: 1px solid #222;
  border-radius: 4px;
  padding: 4px 10px;
}

/* ===========================
   Shared Page Hero
=========================== */
.page-hero {
  padding: 80px 40px 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* ===========================
   News Page
=========================== */
.news-page-section {
  padding: 0 40px 80px;
}

.news-page-inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* Featured article */
.news-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(40px);
  transition: border-color 0.3s;
}

.news-featured.revealed {
  opacity: 1;
  transform: translateY(0);
}

.news-featured:hover {
  border-color: #2a2a2a;
}

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

.news-featured-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.news-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-featured:hover .news-featured-img img {
  transform: scale(1.03);
}

.news-featured-body {
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 900px) {
  .news-featured-body { padding: 32px; }
}

.news-featured-body h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #fff;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

.news-featured-body p {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.8;
  margin: 0;
}

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

.news-date {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: #444;
}

.news-page-divider {
  height: 1px;
  background: #1a1a1a;
  margin-bottom: 48px;
}

/* Smaller article grid */
.news-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.news-page-card {
  background: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(40px);
  transition: border-color 0.3s;
}

.news-page-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.news-page-card:hover {
  border-color: #2a2a2a;
}

.news-page-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.news-page-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-page-card:hover .news-page-card-img img {
  transform: scale(1.04);
}

.news-page-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.news-page-card-body h3 {
  font-size: 1.05rem;
  color: #fff;
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

.news-page-card-body p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.7;
  margin: 0;
}

/* ===========================
   Contact Page
=========================== */
.contact-section {
  padding: 0 40px 100px;
}

.contact-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-section { padding: 0 24px 80px; }
}

.contact-info {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.contact-info.revealed {
  opacity: 1;
  transform: translateY(0);
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin: 0 0 16px 0;
  font-weight: 600;
}

.contact-info > p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.8;
  margin: 0 0 40px 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-detail-row i {
  color: #444;
  width: 16px;
  font-size: 0.9rem;
}

.contact-detail-row a {
  font-size: 0.88rem;
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-detail-row a:hover {
  color: #fff;
}

/* Form */
.contact-form-wrap {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s 0.1s ease, transform 0.7s 0.1s ease;
}

.contact-form-wrap.revealed {
  opacity: 1;
  transform: translateY(0);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group-custom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-custom label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: #555;
}

.form-group-custom input,
.form-group-custom textarea {
  background: #0d0d0d;
  border: 1px solid #1e1e1e;
  border-radius: 6px;
  padding: 14px 16px;
  color: #fff;
  font-size: 0.88rem;
  font-family: inherit !important;
  transition: border-color 0.2s;
  outline: none;
  resize: none;
}

.form-group-custom input::placeholder,
.form-group-custom textarea::placeholder {
  color: #333;
}

.form-group-custom input:focus,
.form-group-custom textarea:focus {
  border-color: #444;
}

.contact-submit {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 4px;
  padding: 16px 32px;
  font-size: 0.85rem;
  font-family: inherit !important;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}

.contact-submit:hover {
  background: #ddd;
}

.fluid-sub {
  font-size: clamp(0.5rem, 2vw, 1.5rem);
  line-height: 1.4;
  margin: 0;
  padding-top: 48px;
  color: #666;
}

.team-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.team-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #555;
  text-decoration: none;
  border: 1px solid #222;
  border-radius: 4px;
  padding: 5px 12px;
  transition: color 0.2s, border-color 0.2s;
}

.team-links a:hover {
  color: #fff;
  border-color: #444;
  text-decoration: none;
}

.team-links svg {
  flex-shrink: 0;
}

/* ===========================
   Tech Ticker
=========================== */
.tech-ticker-wrap {
  background: #000;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 20px 0 24px;
}

.tech-ticker-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: #333;
  text-align: center;
  margin: 0 0 16px 0;
}

.tech-ticker {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.tech-ticker-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.tech-ticker-fade-left  { left: 0;  background: linear-gradient(to right, #000, transparent); }
.tech-ticker-fade-right { right: 0; background: linear-gradient(to left,  #000, transparent); }

.tech-ticker-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: ticker-scroll 22s linear infinite;
  padding: 0 28px;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.35;
  transition: opacity 0.3s;
  cursor: default;
}

.ticker-item:hover {
  opacity: 1;
}

.ticker-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: grayscale(100%) brightness(10);
}

.ticker-svg {
  width: 28px;
  height: 28px;
  color: #fff;
  flex-shrink: 0;
}

.ticker-item span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: #fff;
  white-space: nowrap;
  text-transform: uppercase;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

.tech-ticker:hover .tech-ticker-track {
  animation-play-state: paused;
}

/* ===========================
   Mobile: reduce header + fin spacing
=========================== */
@media (max-width: 768px) {
  header {
    padding: 48px 0 48px 24px;
    min-height: 0;
  }

  main section:last-of-type {
    padding: 48px 24px;
    min-height: 0;
  }

  .fluid {
    font-size: clamp(3rem, 15vw, 6rem);
  }

  .fluid-sub {
    padding-top: 16px;
  }
}
