/* ── Material Symbols ── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}
.icon-filled { font-variation-settings: 'FILL' 1, 'wght' 300, 'GRAD' 0, 'opsz' 24; }

/* ── Font helpers ── */
.font-heading, .font-headline { font-family: 'Cormorant Garamond', serif; }
.font-body, .font-sans { font-family: 'Public Sans', sans-serif; }
.font-mono, .font-label { font-family: 'JetBrains Mono', monospace; }

/* ── Body background ── */
body {
  background-color: #050505;
  background-image: radial-gradient(rgba(255,215,0,0.03) 1px, transparent 0);
  background-size: 24px 24px;
}

/* ── Gradient text ── */
.heading-gradient {
  background: linear-gradient(135deg, #ffe792 0%, #fd8b00 50%, #ff725e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold-gradient-text {
  background: linear-gradient(to right, #ffe792, #fd8b00, #ff725e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient {
  background: linear-gradient(to right, #ffe792, #fd8b00, #ff725e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Glass card ── */
.glass-card {
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,215,0,0.15);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover {
  border-color: #ffd700;
  box-shadow: 0 0 15px rgba(255,140,0,0.15);
}

/* ── Kinetic card ── */
.kinetic-card {
  background: #0e0e0e;
  border: 1px solid rgba(255,215,9,0.1);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.kinetic-card:hover {
  border-color: #ffd709;
  background: #151515;
  transform: translateY(-2px);
}

/* ── FAQ card (accordion) ── */
.faq-card {
  background: rgba(15,15,15,0.95);
  border: 1px solid rgba(255,215,0,0.15);
  transition: all 0.3s ease;
  overflow: hidden;
}
.faq-card:hover { border-color: #ffd700; box-shadow: 0 0 15px rgba(255,140,0,0.15); }

/* ── Kinetic button ── */
.kinetic-btn {
  background: linear-gradient(to right, #ffd700, #ff8c00);
  color: #000;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}
.kinetic-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(255,140,0,0.4); }

/* ── CTA button ── */
.cta-btn {
  background: linear-gradient(to right, #ffd700, #ff8c00);
  color: #000;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 24px rgba(255,215,0,0.3); }

/* ── Section label ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-left: 2px solid #ffd709;
  padding-left: 1rem;
  margin-bottom: 2rem;
}
.section-label span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #fd8b00;
}

/* ── Shared font theme (Inter override — matches original shared-font-theme) ── */
.shared-font-theme :not(.material-symbols-outlined) {
  font-family: 'Inter', 'Public Sans', sans-serif !important;
}
.shared-font-theme h1,
.shared-font-theme h2,
.shared-font-theme h3,
.shared-font-theme h4,
.shared-font-theme h5,
.shared-font-theme h6 {
  letter-spacing: 0.01em;
}

/* ── Layout helpers ── */
.tight-layout { max-width: 1200px; margin-left: auto; margin-right: auto; }

/* ── Dot grid background ── */
.dot-grid {
  background-image: radial-gradient(circle, rgba(255,215,9,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ── Nav active ── */
.active-nav { border-bottom-color: #ffd709 !important; color: #ffd709 !important; }

/* ── Trusted-by scroll ── */
@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-scroll {
  animation: scroll-left 30s linear infinite;
  display: flex;
  width: fit-content;
}
.animate-scroll:hover { animation-play-state: paused; }

.trusted-set { gap: 1.5rem; padding: 0 1.5rem; }
.trusted-logo {
  flex: 0 0 auto;
  width: clamp(140px, calc((100vw - 9rem) / 4), 260px);
  height: clamp(2.75rem, 4vw, 3.5rem);
  object-fit: contain;
}
.trusted-logo--seb { height: clamp(3.1rem, 10vw, 3.9rem); }

/* ── Portfolio filter ── */
.portfolio-item { transition: opacity 0.3s ease, transform 0.3s ease; }
.portfolio-item.hidden-item { display: none; }
.filter-btn.active-filter { border-color: #ffd709 !important; color: #ffd709 !important; }

/* ── Pagination ── */
.pagination { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; }
.pagination span, .pagination a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.pagination a:hover, .pagination .active { border-color: #ffd709; color: #ffd709; }

/* ── Blog tag ── */
.blog-tag {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  font-size: 9px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
}

/* ── Hero (home page) ── */
.hero-readable .hero-badge {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #ffe792;
}
.hero-readable .hero-title {
  font-family: 'Inter', 'Public Sans', sans-serif;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.hero-readable .hero-title .heading-gradient {
  display: inline-block;
  padding: 0.04em 0.02em;
  line-height: 1.15;
  font-style: normal;
}
.hero-readable .hero-desc {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.75;
  color: rgba(245,245,245,0.86);
}

/* ── Services text gradient ── */
.text-gradient-services {
  background: linear-gradient(to bottom right, #ffe792, #fd8b00, #ff725e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 1024px) { .trusted-logo { width: clamp(120px, calc((100vw - 7rem) / 3), 220px); } }
@media (max-width: 640px)  { .trusted-logo { width: calc((100vw - 4rem) / 2); height: 2.5rem; } }

/* ── Portfolio bento grid ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.bento-grid > * { min-width: 0; }

/* ── Portfolio card glow ── */
.card-glow { transition: box-shadow 0.4s ease, transform 0.4s ease; }
.card-glow:hover { box-shadow: 0 0 25px rgba(255,114,94,0.15); }
