/* ==========================================================================
   TecAtlas — company holding page
   Dark, near-black aesthetic with the logo's electric-blue glow as accent.
   Brand: bg #0a0a0f · accent #2B83EB · highlight #C6EAFF · Inter + JetBrains Mono
   Plain static CSS, no build step. Deliberately distinct from SnapSlot's gold/navy.
   ========================================================================== */

:root {
  --bg: #0a0a0f;                        /* near-black page */
  --bg-2: #101119;                      /* lifted panel (product card) */
  --text: #E8EAF0;                      /* cool near-white */
  --muted: rgba(232, 234, 240, 0.60);   /* secondary text */
  --faint: rgba(232, 234, 240, 0.40);   /* fine print */

  --accent: #2B83EB;                    /* vivid ring blue (sampled from logo) */
  --accent-bright: #C6EAFF;             /* bright highlight */
  --accent-2: #4C89DF;                  /* mid-tone secondary */
  --border: rgba(198, 234, 255, 0.12);  /* blue-tinted hairline */

  --container: 720px;
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }

/* ----- Page shell: vertically-centred content, footer pinned to bottom ----- */
.page {
  flex: 1 0 auto;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 12vh 24px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 92px;
}

/* ----- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Electric-blue radial glow behind the logo/headline */
.hero .glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(760px, 122vw);
  height: min(760px, 122vw);
  background: radial-gradient(circle at center,
    rgba(43, 131, 235, 0.30) 0%,
    rgba(43, 131, 235, 0.10) 32%,
    rgba(43, 131, 235, 0) 62%);
  pointer-events: none;
  z-index: 0;
}
.hero > *:not(.glow) { position: relative; z-index: 1; }

/* Logos are alpha-matted (transparent background derived from the glow's own
   luminance), so they composite cleanly over the radial glow — no rectangle. */
.lockup {
  width: min(520px, 84vw);
  height: auto;
  margin-bottom: 8px;
}

.hero h1 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--accent-bright) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead {
  margin-top: 20px;
  max-width: 520px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
}

/* ----- Monospace eyebrow --------------------------------------------------- */
.eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 18px;
  text-align: center;
}

/* ----- Products ------------------------------------------------------------ */
.products { text-align: center; }
.product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  max-width: 520px;
  margin: 0 auto;
  padding: 22px 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.product:hover {
  border-color: rgba(43, 131, 235, 0.55);
  box-shadow: 0 0 0 1px rgba(43, 131, 235, 0.25), 0 14px 44px rgba(43, 131, 235, 0.16);
  transform: translateY(-2px);
  text-decoration: none;
}
.product-body { display: block; }
.product-name {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.product-desc {
  display: block;
  font-size: 0.98rem;
  color: var(--muted);
}
.product-arrow {
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: color 0.18s ease, transform 0.18s ease;
}
.product:hover .product-arrow {
  color: var(--accent-bright);
  transform: translate(2px, -2px);
}

/* ----- Footer -------------------------------------------------------------- */
.site-footer {
  flex-shrink: 0;
  text-align: center;
  padding: 36px 24px 44px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-mark {
  width: 30px;
  height: auto;
  opacity: 0.9;
}
.footer-email { color: var(--accent); font-size: 0.95rem; }
.footer-email:hover { color: var(--accent-bright); text-decoration: underline; }
.footer-legal {
  font-size: 0.82rem;
  color: var(--faint);
  letter-spacing: 0.02em;
}

/* ----- Responsive ---------------------------------------------------------- */
@media (max-width: 768px) {
  .page { gap: 68px; padding-top: 9vh; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .product:hover { transform: none; }
  .product:hover .product-arrow { transform: none; }
}
