/* AGILiS – Design System */

/* ─── Base ─────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', sans-serif;
  background-color: #080E1A;
  color: #ffffff;
}

/* ─── Background Textures ───────────────────────── */
.bg-grid {
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(78, 205, 196, 0.12) 1px,
    transparent 0
  );
  background-size: 36px 36px;
}

/* ─── Glow Effects ──────────────────────────────── */
.glow-hero {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.glow-hero-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.18) 0%, transparent 70%);
  top: -160px;
  right: -80px;
}
.glow-hero-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(137, 216, 232, 0.10) 0%, transparent 70%);
  bottom: 0;
  left: 10%;
}

.glow-section {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  background: radial-gradient(circle, rgba(78, 205, 196, 0.08) 0%, transparent 70%);
}

/* ─── Cards ─────────────────────────────────────── */
.card-dark {
  background: #111827;
  border: 1px solid rgba(78, 205, 196, 0.12);
  border-radius: 1rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.card-dark:hover {
  border-color: rgba(78, 205, 196, 0.35);
  box-shadow: 0 0 24px rgba(78, 205, 196, 0.08);
}

/* ─── Icon Glow ──────────────────────────────────── */
.icon-wrap {
  background: rgba(78, 205, 196, 0.1);
  border: 1px solid rgba(78, 205, 196, 0.2);
  border-radius: 0.75rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── CTA Button ─────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: #4ECDC4;
  color: #080E1A;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0.9rem 2.2rem;
  border-radius: 0.75rem;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: #89D8E8;
  box-shadow: 0 0 28px rgba(78, 205, 196, 0.4);
}

.btn-outline {
  display: inline-block;
  border: 2px solid rgba(78, 205, 196, 0.5);
  color: #4ECDC4;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 0.75rem;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover {
  background: rgba(78, 205, 196, 0.1);
  border-color: #4ECDC4;
}

/* ─── Lang Toggle ────────────────────────────────── */
#lang-toggle {
  min-width: 44px;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border: 1.5px solid rgba(78, 205, 196, 0.5);
  color: #4ECDC4;
  border-radius: 0.5rem;
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
}
#lang-toggle:hover {
  background: rgba(78, 205, 196, 0.12);
  border-color: #4ECDC4;
}

/* ─── Mobile Menu ────────────────────────────────── */
#mobile-menu a {
  display: block;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-weight: 600;
  color: #cbd5e1;
}
#mobile-menu a:last-child { border-bottom: none; }
#mobile-menu a:hover { color: #4ECDC4; }

/* ─── Section Divider ────────────────────────────── */
.section-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4ECDC4;
}

/* ─── Stat Cards ─────────────────────────────────── */
.stat-card {
  background: rgba(78, 205, 196, 0.05);
  border: 1px solid rgba(78, 205, 196, 0.15);
  border-radius: 0.75rem;
  padding: 1.25rem 1.75rem;
}

/* ─── Client Name Hover ──────────────────────────── */
.client-name {
  color: rgba(255,255,255,0.2);
  font-weight: 900;
  font-size: 1.5rem;
  transition: color 0.25s;
  cursor: default;
  user-select: none;
}
.client-name:hover { color: #4ECDC4; }

/* ─── About Page ─────────────────────────────────── */
.about-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(78,205,196,0.12) 0%, rgba(137,216,232,0.06) 100%);
  border: 1.5px solid rgba(78,205,196,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 60px rgba(78,205,196,0.1), inset 0 0 40px rgba(78,205,196,0.04);
  flex-shrink: 0;
}
.about-avatar::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(78,205,196,0.08);
}
.about-avatar::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(78,205,196,0.04);
}

.pull-quote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  border-right: 3px solid #4ECDC4;
  padding-right: 1.5rem;
  margin: 1.75rem 0;
}

.story-line {
  border-right: 2px solid rgba(78,205,196,0.2);
  padding-right: 2rem;
}

.principle-card {
  background: #111827;
  border: 1px solid rgba(78,205,196,0.12);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.principle-card:hover {
  border-color: rgba(78,205,196,0.32);
  box-shadow: 0 0 28px rgba(78,205,196,0.07);
}

.audience-card {
  background: rgba(78,205,196,0.04);
  border: 1px solid rgba(78,205,196,0.14);
  border-radius: 1rem;
  padding: 2.25rem 2rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.audience-card:hover {
  border-color: rgba(78,205,196,0.3);
  box-shadow: 0 0 32px rgba(78,205,196,0.06);
}

.text-teal { color: #4ECDC4; }

/* ─── Capability Chips ───────────────────────────── */
.cap-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(78,205,196,0.2);
  background: rgba(78,205,196,0.05);
  border-radius: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.01em;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.cap-chip:hover {
  border-color: rgba(78,205,196,0.4);
  background: rgba(78,205,196,0.08);
  color: #cbd5e1;
}

/* ─── Float Animation ────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* ─── Skip to Content ────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  right: 0;
  background: #4ECDC4;
  color: #080E1A;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 0.5rem 0.5rem;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.15s;
}
.skip-link:focus-visible { top: 0; }

/* ─── Focus Visible ──────────────────────────────── */
:focus-visible {
  outline: 2px solid #4ECDC4;
  outline-offset: 3px;
  border-radius: 3px;
}

/* ─── Footer ─────────────────────────────────────── */
footer {
  background: #050A12;
  border-top: 1px solid rgba(255,255,255,0.06);
}
