﻿@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Manrope:wght@300;400;600;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: 'Manrope', sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(107, 227, 255, 0.25), transparent 45%),
    linear-gradient(140deg, var(--bg-1), var(--bg-2) 45%, var(--bg-3));
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3, .brand-title {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.5px;
}

a {
  color: inherit;
  text-decoration: none;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.mesh {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mix-blend-mode: screen;
  opacity: 0.5;
}

.orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(0px);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5), transparent 60%);
  opacity: 0.6;
  animation: float 14s ease-in-out infinite;
}

.orb-1 {
  top: -120px;
  left: -80px;
  background: radial-gradient(circle at 30% 30%, rgba(107, 227, 255, 0.7), transparent 60%);
}

.orb-2 {
  right: -180px;
  top: 30%;
  animation-delay: -4s;
  background: radial-gradient(circle at 30% 30%, rgba(255, 179, 138, 0.6), transparent 60%);
}

.orb-3 {
  bottom: -160px;
  left: 25%;
  animation-delay: -7s;
  background: radial-gradient(circle at 30% 30%, rgba(142, 246, 199, 0.5), transparent 60%);
}

@keyframes float {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(-40px) translateX(20px); }
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(20px, 6vw, 80px);
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(140deg, rgba(255,255,255,0.4), rgba(255,255,255,0.05));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.brand-title {
  font-size: 28px;
}

.brand-sub {
  font-size: 14px;
  color: var(--muted);
}

.header-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.glass-pill {
  border: 1px solid var(--border);
  background: var(--glass);
  color: var(--text);
  padding: 10px 18px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-pill:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 30px rgba(8, 20, 40, 0.45);
}

.page {
  padding: 0 clamp(20px, 6vw, 80px) 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.glass {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 4vw, 36px);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--accent-1);
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(32px, 4vw, 54px);
  margin-bottom: 14px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.hero-stats {
  display: grid;
  gap: 18px;
}

.stat {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--glass-strong);
  border: 1px solid rgba(255,255,255,0.3);
}

.stat span {
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.stat small {
  color: var(--muted);
}

.tabs-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tab {
  flex: 1 1 120px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab.is-active {
  color: var(--text);
  background: var(--glass-strong);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 10px 30px rgba(2, 20, 40, 0.35);
}

.panel {
  display: none;
  animation: reveal 0.5s ease;
}

.panel.is-active {
  display: block;
}

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

.panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
}

.photo-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: inset 0 0 40px rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255,255,255,0.25), transparent 45%);
}

.photo-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 12px;
}

.info h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 6px;
}

.info h3 {
  font-size: 18px;
  color: var(--accent-2);
  margin-bottom: 14px;
}

.info p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.links {
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  margin-bottom: 18px;
}

.links-title {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--accent-1);
}

.links ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  transition: transform 0.3s ease, background 0.3s ease;
}

.links a:hover {
  transform: translateX(4px);
  background: rgba(255,255,255,0.18);
}

.callout {
  border-left: 3px solid var(--accent-3);
  padding-left: 14px;
}

.callout span {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--accent-3);
}

.callout p {
  margin-top: 8px;
  color: var(--muted);
}

.site-footer {
  padding: 32px clamp(20px, 6vw, 80px) 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

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

.footer-links a {
  color: var(--muted);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 227, 255, 0.25), transparent 60%);
  transform: translate(-50%, -50%);
  left: var(--cursor-x, 50%);
  top: var(--cursor-y, 50%);
  transition: opacity 0.3s ease;
  z-index: -1;
  opacity: 0.6;
}

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

  .panel-grid {
    grid-template-columns: 1fr;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .tab {
    flex: 1 1 100%;
  }
}
