:root {
  --blue: #4285f4;
  --yellow: #fbbc05;
  --green: #34a853;
  --red: #ea4335;
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.78);
  --text-muted: rgba(255, 255, 255, 0.68);
  --border: rgba(255, 255, 255, 0.08);
  --card-bg: rgba(7, 13, 24, 0.82);
  --panel-bg: rgba(255, 255, 255, 0.03);
  --background-image: url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1800&q=80');
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background:
    linear-gradient(rgba(7, 15, 29, 0.52), rgba(7, 15, 29, 0.74)),
    var(--background-image) center center / cover no-repeat fixed;
}

.scene-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(66, 133, 244, 0.24), transparent 24%),
    radial-gradient(circle at top right, rgba(251, 188, 5, 0.16), transparent 20%),
    radial-gradient(circle at bottom left, rgba(52, 168, 83, 0.16), transparent 20%),
    radial-gradient(circle at bottom right, rgba(234, 67, 53, 0.14), transparent 18%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.26), rgba(2, 6, 23, 0.36));
  pointer-events: none;
}

.office-sign {
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  padding: 16px 34px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 15, 28, 0.48);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-align: center;
  pointer-events: none;
}

.office-sign .company-label {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 8px;
}

.office-sign .company-name {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.5px;
  background: linear-gradient(
    90deg,
    var(--blue) 0%,
    var(--blue) 28%,
    var(--yellow) 28%,
    var(--yellow) 50%,
    var(--green) 50%,
    var(--green) 78%,
    var(--red) 78%,
    var(--red) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 145px 28px 42px;
}

.card {
  width: 100%;
  max-width: 1380px;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card-bg);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.topbar {
  height: 8px;
  background: linear-gradient(
    90deg,
    var(--blue) 0%,
    var(--blue) 26%,
    var(--yellow) 26%,
    var(--yellow) 50%,
    var(--green) 50%,
    var(--green) 74%,
    var(--red) 74%,
    var(--red) 100%
  );
}

.content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.left {
  padding: 60px 56px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.right {
  padding: 60px 44px;
  background: linear-gradient(180deg, rgba(66, 133, 244, 0.07), rgba(255, 255, 255, 0.015));
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.brand-logo-image {
  width: min(360px, 44vw);
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.28));
}

.brand-logo-fallback {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 34px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  box-shadow: 0 14px 28px rgba(66, 133, 244, 0.24);
  flex-shrink: 0;
}

.ga-blue {
  color: #ffffff;
}

.ga-yellow {
  color: #fff3bf;
}

.brand-text h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
  color: #ffffff;
}

.brand-text p {
  margin: 8px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.4px;
}

.badge {
  display: inline-block;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(66, 133, 244, 0.13);
  border: 1px solid rgba(66, 133, 244, 0.28);
  color: #a9cbff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1 {
  margin: 0 0 16px;
  font-size: 52px;
  line-height: 1.1;
  color: #ffffff;
}

.desc {
  margin: 0;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.84);
}

.highlight {
  margin-top: 28px;
  padding: 20px;
  border-radius: 20px;
  background: var(--panel-bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.highlight-title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--yellow);
}

.highlight p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-soft);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.stat-box {
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-number {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
}

.stat-box:nth-child(1) .stat-number {
  color: var(--blue);
}

.stat-box:nth-child(2) .stat-number {
  color: var(--green);
}

.stat-box:nth-child(3) .stat-number {
  color: var(--yellow);
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.panel-title {
  margin: 0 0 8px;
  font-size: 15px;
  color: #9ec4ff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 700;
}

.panel-subtitle {
  margin: 0 0 24px;
  font-size: 32px;
  line-height: 1.28;
  font-weight: 800;
}

.countdown-box {
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  margin-bottom: 20px;
}

.count-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: 8px;
}

.count-number {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(90deg, var(--blue) 0%, var(--yellow) 45%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team-photo-card {
  margin-top: 18px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.team-photo-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8, 15, 28, 0.82), rgba(8, 15, 28, 0.08)),
    linear-gradient(135deg, rgba(66, 133, 244, 0.10), rgba(52, 168, 83, 0.08));
}

.team-photo-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(7, 13, 24, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.team-photo-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.team-photo-caption h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.2;
}

.team-photo-caption p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 17px 18px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  transition: all 0.22s ease;
}

.btn-primary {
  color: #08111f;
  background: linear-gradient(135deg, #ffffff 0%, #dce9ff 100%);
  box-shadow: 0 14px 28px rgba(66, 133, 244, 0.22);
}

.btn-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.97;
}

.mini-note {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}

.footer {
  margin-top: 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

@media (max-width: 960px) {
  .office-sign {
    top: 30px;
    padding: 12px 22px;
  }

  .office-sign .company-name {
    font-size: 28px;
  }

  .page {
    padding-top: 116px;
  }

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

  .left {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .left,
  .right {
    padding: 34px 24px;
  }

  h1 {
    font-size: 34px;
  }

  .panel-subtitle {
    font-size: 24px;
  }

  .brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo-image {
    width: min(280px, 100%);
  }

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

  .team-photo-wrap {
    height: 220px;
  }
}
