:root {
  --bg: #07131d;
  --bg-soft: #0c1e2d;
  --panel: rgba(14, 30, 42, 0.88);
  --panel-strong: rgba(7, 18, 27, 0.96);
  --primary: #1ee0b6;
  --primary-strong: #0cb49c;
  --accent: #7fb5ff;
  --text: #edfaff;
  --muted: #a6bdcc;
  --line: rgba(148, 181, 255, 0.18);
  --shadow: rgba(6, 14, 20, 0.72);
  --warning: #ffd480;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top, rgba(36, 72, 96, 0.75), transparent 33%),
    linear-gradient(180deg, #07131d 0%, #081d2b 30%, #09141d 100%);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.about-shell {
  max-width: 1220px;
  margin: 0 auto;
  padding: 28px 20px 80px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: rgba(9, 18, 28, 0.72);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  position: sticky;
  top: 20px;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(30, 224, 182, 0.18);
}

.brand-text h1 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  letter-spacing: -0.06em;
}

.brand-text small {
  color: var(--muted);
  display: block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}

.navbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.navbar a {
  padding: 9px 13px;
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text);
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.navbar a:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

.navbar .primary-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #032e2d;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(30, 224, 182, 0.2);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  margin-top: 30px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(120deg, rgba(14, 26, 37, 0.9), rgba(8, 18, 28, 0.75)),
    url('/about/capture1.jpg') center/cover no-repeat;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 19, 29, 0.2), rgba(7, 19, 29, 0.72));
}

.hero > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(30, 224, 182, 0.12);
  border: 1px solid rgba(30, 224, 182, 0.18);
  font-weight: 700;
}

.hero-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.07em;
  max-width: 680px;
}

.hero-copy p {
  margin: 18px 0 22px;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #042b2d;
  box-shadow: 0 18px 36px rgba(30, 224, 182, 0.24);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric-box {
  padding: 16px 14px;
  border-radius: 16px;
  background: rgba(13, 25, 35, 0.68);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.metric-box strong {
  display: block;
  font-size: 1.6rem;
  letter-spacing: -0.05em;
  margin-bottom: 6px;
}

.metric-box span {
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-panel {
  width: 100%;
  max-width: 420px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(10, 22, 32, 0.9), rgba(8, 18, 28, 0.72));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.85rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(30, 224, 182, 0.12);
  border: 1px solid rgba(30, 224, 182, 0.22);
  color: var(--primary);
  font-weight: 700;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 18px rgba(30, 224, 182, 0.8);
}

.panel-amount {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  margin: 10px 0 24px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-card {
  padding: 14px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.mini-card label {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.mini-card strong {
  font-size: 1.08rem;
}

.section {
  margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(8, 18, 26, 0.7);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
  padding: 28px 22px;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-header h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -0.05em;
}

.section-header p {
  margin: 8px 0 0;
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.team-grid,
.plan-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}

.team-grid img,
.plan-spotlight img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.team-copy,
.plan-copy {
  color: var(--muted);
  line-height: 1.8;
}

.story-copy {
  color: var(--muted);
  line-height: 1.8;
}

.story-copy p {
  margin: 0 0 16px;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.story-stat {
  padding: 18px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.story-stat strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.story-stat span {
  color: var(--muted);
}

.image-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.image-stack img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.18);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  padding: 22px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
}

.value-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.5rem;
  background: rgba(30, 224, 182, 0.12);
  border: 1px solid rgba(30, 224, 182, 0.2);
  margin-bottom: 16px;
}

.value-card h4 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-card {
  padding: 20px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}

.process-card .step {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(127, 181, 255, 0.14);
  border: 1px solid rgba(127, 181, 255, 0.28);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}

.process-card h4 {
  margin: 0 0 10px;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.ceo-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
  margin-top: 8px;
}

.ceo-portrait-wrap {
  display: flex;
  justify-content: center;
}

.ceo-portrait {
  width: min(100%, 360px);
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
}

.ceo-details {
  color: var(--muted);
  line-height: 1.8;
}

.ceo-details h4 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.05em;
  color: var(--text);
}

.ceo-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(30, 224, 182, 0.12);
  border: 1px solid rgba(30, 224, 182, 0.22);
  color: var(--primary);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.ceo-contact-card {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.ceo-contact-card h5 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1rem;
}

.ceo-contact-card p {
  margin: 0;
  line-height: 1.7;
}

.ceo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.ceo-gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-image {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gallery-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
  border-color: rgba(30, 224, 182, 0.32);
}

.gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.lightbox.open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 13, 0.8);
  backdrop-filter: blur(6px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 1000px);
  max-height: 90vh;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(8, 18, 28, 0.92);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
}

.lightbox-content img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 16px;
}

.lightbox-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--text);
  font-size: 1.8rem;
  cursor: pointer;
}

.cta-bar {
  margin-top: 34px;
  padding: 28px 24px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(30, 224, 182, 0.2);
  background: linear-gradient(135deg, rgba(30, 224, 182, 0.12), rgba(127, 181, 255, 0.08));
}

.cta-bar h3 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  letter-spacing: -0.05em;
}

.cta-bar p {
  margin: 0;
  color: var(--muted);
}

.footer-note {
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .hero,
  .story-grid,
  .team-grid,
  .plan-spotlight,
  .ceo-layout,
  .ceo-gallery-grid,
  .value-grid,
  .process-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .about-shell {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero {
    padding: 22px 18px;
  }

  .hero-actions,
  .cta-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-metrics,
  .story-stats {
    grid-template-columns: 1fr 1fr;
  }
}
