/* a-tigers base styles */
:root {
  --brand: #f97316; /* tiger orange */
  --ink: #0f172a;
  --bg: #ffffff;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: #064e3b;
}
header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
  background: #064e3b;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  flex-wrap: wrap;
}
header .tabs {
  margin-left: auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
header .tabs .tab {
  color: #f1f5f9;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
  white-space: nowrap;
}
header .tabs .tab:hover {
  background: rgba(255,255,255,.08);
  color: #FFD700;
}
header .tabs .tab.active {
  background: rgba(255,255,255,.12);
  color: #FFD700;
}

/* Hamburger menu button - hidden by default */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  z-index: 10;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: #FFD700;
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* Mobile responsive header */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  header {
    padding: 12px 16px;
    flex-wrap: nowrap;
  }
  
  header span {
    font-size: 1.2rem !important;
  }
  
  header img {
    height: 40px !important;
    width: 40px !important;
  }
  
  header .tabs {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #064e3b;
    flex-direction: column;
    gap: 0;
    margin-left: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  header .tabs.active {
    max-height: 300px;
  }
  
  header .tabs .tab {
    font-size: 0.9rem;
    padding: 14px 20px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}

@media (max-width: 480px) {
  header span {
    font-size: 0.85rem !important;
    letter-spacing: 0.5px;
  }
}
html { scroll-behavior: smooth; }
body {
  padding-top: 80px;
}

/* Adjust body padding for mobile when header wraps */
@media (max-width: 768px) {
  body {
    padding-top: 120px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 110px;
  }
}
header span {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #FFD700;
  text-align: left;
  display: block;
}
header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--ink);
}
header .brand .logo {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffedd5, var(--brand));
  border: 2px solid #fb923c;
}
nav a {
  color: var(--ink);
  text-decoration: none;
  margin-left: 16px;
}
.hero {
  position: relative;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url("https://picsum.photos/1600/500") center/cover no-repeat;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  font-size: 2.5rem;
  font-weight: bold;
  padding: 0 24px;
  text-align: center;
  transition: background-image 0.4s;
}
.hero.alt {
  background: url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}
.hero-btn {
  position: absolute;
  top: 18px;
  right: 24px;
  z-index: 2;
  padding: 7px 16px;
  font-size: 0.95rem;
  border-radius: 6px;
  border: none;
  background: #fbbf24;
  color: #222;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  opacity: 0.92;
  transition: background 0.2s, color 0.2s;
}
.hero-btn:hover {
  background: #22c55e;
  color: #fff;
}
.hero-title {
  font-size: 4rem;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}
.hero h1 { font-size: clamp(32px, 5vw, 56px); margin: 0 0 12px; }
.hero p { font-size: clamp(16px, 2.5vw, 20px); margin: 0 0 24px; color: #475569; }
.btn {
  display: inline-block;
  padding: 12px 18px;
  background: var(--brand);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25);
}
footer {
  margin-top: 60px;
  background: #222;
  color: #ccc;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* About section */
.about {
  position: relative;
  padding: 64px 20px;
  background: #064e3b;
}
.about .container {
  max-width: 1100px;
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
}
.eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fbbf24;
  background: #022c22;
  padding: 6px 10px;
  border-radius: 999px;
}
.about h2 { font-size: clamp(28px, 4.5vw, 44px); margin: 12px 0 10px; }
.about .muted { color: #d1fae5; line-height: 1.7; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 8px; }
.badge { background: #022c22; color: #fbbf24; padding: 6px 10px; border-radius: 999px; font-weight: 600; }

.about-visual { position: relative; }
.blob {
  position: absolute;
  inset: -30px -20px -20px -30px;
  background: radial-gradient(120px 120px at 20% 30%, #10b981, transparent 60%),
              radial-gradient(180px 180px at 80% 70%, #fbbf24, transparent 60%),
              radial-gradient(220px 220px at 60% 10%, #f59e42, transparent 60%);
  filter: blur(24px) saturate(120%);
  opacity: .55;
  pointer-events: none;
}
.about-image {
  position: relative;
  width: 100%;
  max-width: 360px;
  display: block;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

.kpis { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-top: 18px; }
@media (max-width: 600px) { .kpis { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.kpi { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 14px; box-shadow: 0 6px 18px rgba(0,0,0,.05); }
.kpi { background: #022c22; border: 1px solid #155e46; border-radius: 14px; padding: 14px; box-shadow: 0 6px 18px rgba(0,0,0,.09); }
.kpi-num { font-size: 28px; font-weight: 800; color: #fbbf24; }
.kpi-label { color: #d1fae5; font-size: 13px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Cards tweak */
.cards .card { will-change: transform; }
.cards .card:hover { transform: translateY(-6px); box-shadow: 0 10px 24px rgba(0,0,0,.12); }

/* Focus section */
.focus {
  padding: 56px 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  background: #064e3b;
  border-radius: 18px;
}
.section-title {
  font-size: clamp(26px, 4vw, 40px);
  margin: 0 0 8px;
  color: #FFD700;
}
.section-subtitle {
  color: #d1fae5;
  margin: 0 auto 22px;
  max-width: 720px;
}
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 900px) { .focus-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 600px) { .focus-grid { grid-template-columns: 1fr; } }
.focus-card {
  position: relative;
  background: #022c22;
  border: 1px solid #155e46;
  border-radius: 16px;
  padding: 22px;
  text-align: left;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,.13);
}
.focus-card::after {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  height: 120px; width: 120px;
  background: radial-gradient(closest-side, rgba(251,191,36,.18), transparent);
  transform: translate3d(0,0,0);
}
.focus-card:hover { transform: translateY(-6px) rotateX(2deg) rotateY(-2deg); border-color: #fdba74; box-shadow: 0 18px 40px rgba(0,0,0,.12); }
.focus-icon { font-size: 32px; line-height: 1; margin-bottom: 10px; }
.focus-card h3 {
  margin: 6px 0 6px;
  color: #fbbf24;
  font-size: 20px;
}
.focus-card p {
  color: #d1fae5;
  margin: 0 0 12px;
}
.chip {
  display: inline-block;
  background: #155e46;
  color: #fbbf24;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}

/* Reveal stagger using data attribute */
[data-reveal-delay] { transition-delay: calc(attr(data-reveal-delay ms)); }

/* Our Platforms buttons */
.subdomains { text-align: center; margin-top: 40px; }
.subdomains h2 { color: #FFD700; }
.subdomains a {
  display: inline-block;
  margin: 12px 16px;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(180deg, #16a34a, #15803d);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: .01em;
  font-size: 1.05rem;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.subdomains a:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(0,0,0,.28); filter: brightness(1.05); }
.subdomains a:active { transform: translateY(0); box-shadow: 0 8px 18px rgba(0,0,0,.22); }
.subdomains a.primary { background: linear-gradient(180deg, #22c55e, #16a34a); }
