/* ================================================================
   activity.blockgemini.com — Product Portal Landing
   ================================================================ */

.actv-page { background: #04060F; color: #E8EEFB; min-height: 100vh; }

.actv-shell {
  min-height: 100vh;
  background:
    radial-gradient(60% 80% at 80% 0%, rgba(0,85,255,0.16) 0%, transparent 60%),
    radial-gradient(50% 70% at 10% 100%, rgba(94,255,164,0.10) 0%, transparent 60%),
    #04060F;
}

/* Top bar (product portal — distinct from marketing site) */
.actv-bar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 16px;
  padding: 14px 28px;
  background: rgba(4,6,15,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.actv-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 17px; color: #fff;
  font-weight: 500; letter-spacing: -0.01em;
  text-decoration: none;
}
.actv-logo-mark {
  width: 28px; height: 28px; border-radius: 7px;
  background: linear-gradient(135deg, #5EFFA4 0%, #4FC8FF 100%);
  display: grid; place-items: center; color: #001233;
}
.actv-logo small {
  display: block;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.18em;
  color: #5EFFA4; text-transform: uppercase; margin-top: -2px; font-weight: 500;
}
.actv-bar-nav { display: flex; gap: 24px; margin-left: 28px; }
.actv-bar-nav a {
  font-size: 13px; color: #B5BFD9; text-decoration: none;
  padding: 6px 0; transition: color 200ms;
}
.actv-bar-nav a:hover { color: #fff; }
.actv-bar-spacer { flex: 1; }
.actv-bar-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: #5EFFA4;
  padding: 5px 12px;
  background: rgba(94,255,164,0.06);
  border: 1px solid rgba(94,255,164,0.20);
  border-radius: 999px;
}
.actv-bar-status::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px; background: #5EFFA4;
  box-shadow: 0 0 8px #5EFFA4;
  animation: actvLive 1.6s ease-in-out infinite;
}
@keyframes actvLive { 0%,100%{opacity:1} 50%{opacity:.5} }
.actv-bar-actions { display: flex; align-items: center; gap: 10px; }
.actv-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 6px;
  font-size: 13px; font-weight: 500; text-decoration: none;
  transition: all 200ms;
}
.actv-btn-ghost { color: #B5BFD9; }
.actv-btn-ghost:hover { color: #fff; background: rgba(255,255,255,0.04); }
.actv-btn-primary { background: #5EFFA4; color: #001233; }
.actv-btn-primary:hover { background: #4FE890; }

/* Main split */
.actv-main {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  max-width: 1340px; margin: 0 auto;
  padding: 60px 28px 40px;
  gap: 64px;
  align-items: start;
}

/* LEFT — sign-in panel */
.actv-left { padding-top: 24px; }
.actv-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: #5EFFA4;
  padding: 5px 12px;
  border: 1px solid rgba(94,255,164,0.25);
  background: rgba(94,255,164,0.06);
  border-radius: 999px;
  margin-bottom: 24px;
}
.actv-h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px, 4.2vw, 56px); line-height: 1.05;
  letter-spacing: -0.025em; color: #fff; margin: 0 0 16px;
}
.actv-h1 .grad {
  background: linear-gradient(120deg, #4FC8FF 0%, #5EFFA4 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.actv-lead { color: #B5BFD9; font-size: 16px; line-height: 1.55; max-width: 480px; margin: 0 0 32px; }

/* Auth card */
.actv-auth {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 28px;
  max-width: 480px;
  box-shadow: 0 30px 80px -20px rgba(0,80,200,0.30);
}
.actv-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 4px; background: rgba(0,0,0,0.30); border-radius: 8px; margin-bottom: 22px; }
.actv-tab {
  padding: 9px; border-radius: 6px;
  font-size: 13px; font-weight: 500; color: #8896B4;
  border: none; background: transparent; cursor: pointer;
  transition: all 200ms;
}
.actv-tab.active { background: rgba(255,255,255,0.06); color: #fff; }
.actv-form-row { margin-bottom: 14px; }
.actv-form-row label {
  display: block; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase; color: #8896B4; margin-bottom: 6px;
}
.actv-input {
  width: 100%; padding: 11px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff; border-radius: 7px;
  font-family: inherit; font-size: 14px;
  transition: border-color 200ms;
  box-sizing: border-box;
}
.actv-input:focus {
  outline: none; border-color: #4FC8FF;
  background: rgba(79,200,255,0.04);
}
.actv-form-row .hint { display: flex; justify-content: space-between; margin-top: 6px; }
.actv-form-row .hint a { font-size: 11.5px; color: #4FC8FF; text-decoration: none; }
.actv-form-row .hint a:hover { text-decoration: underline; }
.actv-submit {
  width: 100%; padding: 12px; margin-top: 8px;
  background: #5EFFA4; color: #001233;
  border: none; border-radius: 7px; cursor: pointer;
  font-weight: 600; font-size: 14px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 200ms;
}
.actv-submit:hover { background: #4FE890; }
.actv-divider {
  display: flex; align-items: center; gap: 10px; margin: 22px 0 16px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  color: #6679A0; text-transform: uppercase;
}
.actv-divider::before, .actv-divider::after {
  content: ""; flex: 1; height: 1px; background: rgba(255,255,255,0.08);
}
.actv-sso { display: grid; gap: 8px; }
.actv-sso-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  color: #D6DEEE; border-radius: 7px;
  font-size: 13px; font-weight: 500; cursor: pointer;
  transition: all 200ms;
}
.actv-sso-btn:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.18); }
.actv-foot {
  text-align: center; margin-top: 22px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px; color: #B5BFD9;
}
.actv-foot a { color: #4FC8FF; text-decoration: none; font-weight: 500; }

/* RIGHT — preview console */
.actv-preview {
  background: linear-gradient(180deg, rgba(15,21,48,0.95) 0%, rgba(7,11,28,0.95) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 30px 80px -20px rgba(0,80,200,0.45);
  overflow: hidden;
  position: relative;
}
.actv-preview-bar {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 12px; margin-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.actv-preview-bar .dots { display: flex; gap: 5px; }
.actv-preview-bar .dots i { width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,0.18); display: block; }
.actv-preview-bar .title {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: #B5BFD9;
}
.actv-preview-bar .pill {
  margin-left: auto;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  padding: 3px 10px; border-radius: 999px;
  background: rgba(94,255,164,0.10); color: #5EFFA4;
  border: 1px solid rgba(94,255,164,0.30);
}

.actv-preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 14px; }
.actv-tile {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 12px;
}
.actv-tile .l { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.2em; color: #6679A0; text-transform: uppercase; }
.actv-tile .v { font-family: var(--font-display); font-size: 22px; line-height: 1; color: #fff; margin-top: 6px; }
.actv-tile .v.amber { color: #FFB020; }
.actv-tile .delta { font-size: 10.5px; margin-top: 5px; color: #5EFFA4; }

.actv-seats {
  display: grid; grid-template-columns: repeat(20, 1fr); gap: 3px;
  margin-bottom: 14px;
}
.actv-seats span {
  width: 100%; aspect-ratio: 1; border-radius: 2px;
  background: rgba(255,255,255,0.05);
}
.actv-seats span.work { background: #5EFFA4; }
.actv-seats span.meet { background: #4FC8FF; }
.actv-seats span.idle { background: #FFB020; }
.actv-seats span.brk  { background: #C77DFF; }

.actv-feed {
  background: rgba(0,0,0,0.30);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px; padding: 12px;
}
.actv-feed-title {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  color: #6679A0; text-transform: uppercase; margin-bottom: 8px;
}
.actv-feed-row {
  display: grid; grid-template-columns: 56px 10px 1fr;
  gap: 8px; align-items: center;
  padding: 4px 0;
  font-family: var(--font-mono); font-size: 10.5px;
  border-bottom: 1px dashed rgba(255,255,255,0.05);
}
.actv-feed-row:last-child { border-bottom: 0; }
.actv-feed-row .t { color: #6679A0; font-size: 10px; }
.actv-feed-row .d { width: 7px; height: 7px; border-radius: 999px; background: #5EFFA4; }
.actv-feed-row .d.cyan { background: #4FC8FF; }
.actv-feed-row .d.amber { background: #FFB020; }
.actv-feed-row .msg { color: #D6DEEE; font-family: var(--font-sans); font-size: 11.5px; }

.actv-feature-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px;
}
.actv-feature {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px; padding: 10px 12px;
  font-size: 11px; color: #B5BFD9;
  display: flex; align-items: center; gap: 8px;
}
.actv-feature svg { color: #5EFFA4; flex-shrink: 0; }
.actv-feature b { color: #fff; font-weight: 500; }

/* Bottom band: download / docs / status */
.actv-utility {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 28px 60px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.actv-util-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 22px;
  transition: border-color 240ms, transform 240ms, background 240ms;
  text-decoration: none; color: inherit;
  display: block;
}
.actv-util-card:hover { border-color: rgba(94,255,164,0.30); transform: translateY(-2px); background: rgba(94,255,164,0.04); }
.actv-util-card .ico {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(94,255,164,0.10); color: #5EFFA4;
  display: grid; place-items: center; margin-bottom: 12px;
}
.actv-util-card h5 { color: #fff; font-size: 15px; margin: 0 0 4px; font-weight: 500; }
.actv-util-card p { color: #B5BFD9; font-size: 12.5px; margin: 0; line-height: 1.5; }
.actv-util-card .arr { display: inline-block; margin-top: 10px; color: #4FC8FF; font-size: 11px; font-family: var(--font-mono); letter-spacing: 0.16em; }

/* Footer */
.actv-foot-bar {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  font-size: 12px; color: #6679A0;
  max-width: 1340px; margin: 0 auto;
}
.actv-foot-bar a { color: #B5BFD9; text-decoration: none; margin-right: 18px; font-size: 12px; }
.actv-foot-bar a:hover { color: #fff; }

/* Responsive */
@media (max-width: 980px) {
  .actv-main { grid-template-columns: 1fr; gap: 36px; padding: 32px 20px; }
  .actv-bar-nav { display: none; }
  .actv-utility { grid-template-columns: 1fr 1fr; padding: 0 20px 40px; }
  .actv-preview-grid { grid-template-columns: 1fr 1fr; }
  .actv-seats { grid-template-columns: repeat(16, 1fr); }
}
@media (max-width: 560px) {
  .actv-utility { grid-template-columns: 1fr; }
  .actv-feature-strip { grid-template-columns: 1fr; }
}
