@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-dark: #061e1b;
  --bg-surface: #ffffff;
  --bg-subtle: #f8fafc;
  --text-primary: #0f172a;
  --text-muted: #64748b;
  --line-color: #e2e8f0;
  
  --teal-primary: #0d9488;
  --teal-glow: #14b8a6;
  --cyan-accent: #06b6d4;
  
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.03);
  --shadow-md: 0 12px 30px -5px rgba(0,0,0,0.08);
  --shadow-hover: 0 25px 40px -10px rgba(13, 148, 136, 0.2);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-subtle);
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

.container { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }

/* Custom Interactive Glowing Cursor - Teal Theme */
.custom-cursor-dot {
  width: 8px; height: 8px; background: var(--teal-glow); border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 99999;
  transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, background 0.2s;
  box-shadow: 0 0 10px var(--teal-glow);
}
.custom-cursor-ring {
  width: 38px; height: 38px; border: 1.5px solid rgba(13, 148, 136, 0.5); border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 99998;
  transform: translate(-50%, -50%); transition: width 0.25s ease-out, height 0.25s ease-out, border-color 0.25s, background 0.25s;
}
.custom-cursor-ring.cursor-hover {
  width: 65px; height: 65px; border-color: var(--teal-primary); background: rgba(13, 148, 136, 0.15);
  box-shadow: 0 0 20px rgba(13, 148, 136, 0.35);
}

/* Lightbox Modal Viewer */
.lightbox-modal {
  position: fixed; inset: 0; z-index: 100000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.lightbox-modal.active { opacity: 1; pointer-events: auto; }
.lightbox-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(15px); }
.lightbox-content {
  position: relative; max-width: 90vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; z-index: 1;
}
.lightbox-content img {
  max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 12px; box-shadow: 0 25px 50px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.15);
}
.lightbox-close {
  position: absolute; top: -45px; right: 0; background: transparent; border: none; color: #fff; font-size: 36px; cursor: pointer;
}
.lightbox-cap { margin-top: 14px; font-size: 15px; color: #e2e8f0; text-align: center; font-weight: 600; }

.topbar { font-size: 13px; font-weight: 500; background: #fff; border-bottom: 1px solid var(--line-color); }
.topbar .container { display: flex; justify-content: space-between; padding: 10px 0; color: var(--text-muted); }

header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-color);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
.nav { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.logo {
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 24px; letter-spacing: -0.5px;
  color: var(--text-primary); display: flex; align-items: center; gap: 8px;
}
.logo span {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; background: #ccfbf1; color: var(--teal-primary); padding: 4px 12px; border-radius: 20px;
}

nav { display: flex; gap: 8px; flex-wrap: wrap; }
nav a { font-size: 14px; font-weight: 600; color: #475569; padding: 8px 16px; border-radius: 30px; }
nav a:hover, nav a.active { color: var(--teal-primary); background: #f0fdfa; }

.hero {
  padding: 90px 0 80px;
  background: radial-gradient(circle at 85% 20%, #ccfbf1 0%, #ffffff 60%);
  position: relative; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.eyebrow {
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--teal-primary); display: inline-block; margin-bottom: 12px;
}
h1 {
  font-family: 'Outfit', sans-serif; font-size: clamp(38px, 5vw, 58px); font-weight: 800;
  line-height: 1.1; letter-spacing: -1.5px; color: var(--text-primary); margin-bottom: 20px;
}
.lead { font-size: 18px; color: var(--text-muted); line-height: 1.6; max-width: 680px; margin-bottom: 30px; }

.actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 30px; font-weight: 700; font-size: 14px;
  background: linear-gradient(135deg, var(--teal-primary), #0f766e);
  color: #fff; box-shadow: 0 6px 20px rgba(13, 148, 136, 0.3); border: none; cursor: pointer;
  transition: var(--transition);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(13, 148, 136, 0.45); }
.btn.secondary { background: #fff; color: var(--text-primary); border: 1px solid var(--line-color); box-shadow: var(--shadow-sm); }
.btn.secondary:hover { border-color: var(--teal-primary); color: var(--teal-primary); background: #f0fdfa; }

.visual-box {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  border: 1px solid var(--line-color); background: #fff; aspect-ratio: 4/3; position: relative;
}
.visual-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.visual-box:hover img { transform: scale(1.05); }

.section { padding: 80px 0; }
.section-head { display: flex; justify-content: space-between; gap: 20px; align-items: flex-end; margin-bottom: 40px; }
.section-head h2 { font-family: 'Outfit', sans-serif; font-size: 32px; font-weight: 800; letter-spacing: -0.8px; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.card {
  background: var(--bg-surface); border: 1px solid var(--line-color); border-radius: var(--radius-md);
  overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: #99f6e4; }
.card-img { width: 100%; aspect-ratio: 16/10; overflow: hidden; background: #f1f5f9; position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img img { transform: scale(1.08); }
.card-body { padding: 26px; display: flex; flex-direction: column; flex-grow: 1; }
.badge {
  display: inline-block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 12px; background: #ccfbf1; color: var(--teal-primary); border-radius: 20px; margin-bottom: 12px; align-self: flex-start;
}
.card h3 { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--text-muted); font-size: 14px; flex-grow: 1; margin-bottom: 20px; }

.article { max-width: 880px; margin: auto; background: #fff; padding: 48px; border-radius: var(--radius-lg); border: 1px solid var(--line-color); box-shadow: var(--shadow-md); }
.article h1 { font-family: 'Outfit', sans-serif; font-size: 42px; margin-bottom: 20px; }

.notice { padding: 20px 24px; border-left: 4px solid var(--teal-primary); background: #f0fdfa; border-radius: 0 10px 10px 0; margin: 25px 0; font-size: 14px; }

footer { background: #061e1b; color: #cbd5e1; padding: 70px 0 35px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.footer-title { font-family: 'Outfit', sans-serif; font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.small { font-size: 13px; color: #64748b; border-top: 1px solid #1e293b; padding-top: 25px; margin-top: 50px; text-align: center; }

@media(max-width: 800px) {
  .hero-grid, .footer-grid { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .nav { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px 0; }
  h1 { font-size: 36px; }
}
