
/* Agentiv-X Holding Page v8c (compact, fits typical laptop viewport)
   -------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #1b133a;
  --card-bg: rgba(14, 11, 54, 0.9);
  --accent-lime: #5eff70;
  --accent-cyan: #00bbf0;
  --text-primary: #f5f7ff;
  --text-muted: #c0c7ed;
  --border-subtle: rgba(199, 206, 246, 0.7);
  --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.9);
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-primary);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1.4rem 1.4rem 1.6rem;
  background-color: var(--bg);
  background-image:
    linear-gradient(140deg, rgba(7, 4, 36, 0.96), rgba(7, 4, 36, 0.9)),
    url("../assets/hero-soft-overlay.png"),
    url("../assets/hero-wave.jpg");
  background-size: cover, cover, cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page {
  max-width: 1120px;
  width: 100%;
}

/* Main container */

.card {
  position: relative;
  border-radius: 1.4rem;
  background: radial-gradient(circle at top, rgba(0, 187, 240, 0.08), transparent 70%),
              var(--card-bg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 1.7rem 1.9rem 1.4rem;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

@media (min-width: 960px) {
  .card {
    padding: 1.9rem 2.2rem 1.5rem;
  }
}

/* Layout */

.card-inner {
  display: grid;
  gap: 1.8rem;
}

@media (min-width: 960px) {
  .card-inner {
    grid-template-columns: minmax(0, 3.1fr) minmax(320px, 2.4fr);
    align-items: flex-start;
    gap: 2.2rem;
  }
}

/* Left side: logo + narrative */

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 0.2rem;
}

.logo-wrap img {
  display: block;
  max-width: 260px;
  width: 100%;
  height: auto;
}

.hero-heading {
  margin: 0;
  font-size: clamp(1.7rem, 2.6vw, 2.1rem);
  font-weight: 650;
  max-width: 30rem;
}

.hero-heading span {
  color: var(--accent-lime);
}

.hero-body {
  margin: 0.7rem 0 0.2rem;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 35rem;
}

/* Subsections on left */

.subsection {
  margin-top: 1rem;
}

.subsection-title {
  font-size: 0.86rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b3b9e3;
  margin: 0 0 0.25rem;
}

.subsection-body {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.subsection-list {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Right side: status panel */

.panel {
  border-radius: 1.1rem;
  padding: 1.3rem 1.3rem 1.2rem;
  background:
    radial-gradient(circle at top left, rgba(95, 255, 112, 0.16), transparent 65%),
    radial-gradient(circle at bottom right, rgba(0, 187, 240, 0.14), transparent 65%),
    rgba(11, 8, 48, 0.96);
  border: 1px solid rgba(199, 206, 246, 0.8);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.panel-kicker {
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-lime);
  margin: 0 0 0.45rem;
}

.panel-section-title {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #b3b9e3;
  margin: 0.7rem 0 0.2rem;
}

.panel-sub {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.panel-list {
  margin: 0.25rem 0 0.3rem;
  padding-left: 1.05rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.panel-list li {
  margin-bottom: 0.1rem;
}

/* Contact CTA */

.contact-row {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(199, 206, 246, 0.9);
  background: linear-gradient(135deg, rgba(95, 255, 112, 0.15), rgba(0, 187, 240, 0.12));
  font-size: 0.84rem;
  color: var(--text-primary);
  text-decoration: none;
}

.contact-email::before {
  content: "✉";
  font-size: 0.9rem;
}

.contact-note {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* Footer */

.footer {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #c0c7ed;
}

.footer span {
  opacity: 0.95;
}

/* Mobile & small tablets */

@media (max-width: 768px) {
  body {
    align-items: flex-start;
    justify-content: center;
    padding: 1.3rem 1rem 1.6rem;
    background-position: center top;
  }

  .page {
    max-width: 100%;
  }

  .card {
    padding: 1.4rem 1.2rem 1.3rem;
    border-radius: 1.1rem;
  }

  .card-inner {
    display: block;
  }

  .logo-wrap {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }

  .logo-wrap img {
    max-width: 210px;
  }

  .panel {
    margin-top: 1.2rem;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}
