@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;800&family=JetBrains+Mono&display=swap');
/* ─── CUSTOMIZE HERE ─── */
  :root {
    --site-name:     "NETCORE S.A. de C.V.";       /* shown below logo */
    --accent:      #3B82F6;   /* bright blue */
    --accent-dark: #1E40AF; 
    --bg:            #0D0D0D;
    --surface:       #161616;
    --border:        #2a2a2a;
    --text:          #F5F5F0;
    --muted:         #888;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html, body {
    height: 100%;
    background: var(--bg);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
  }

  /* Grid background */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
  }
  /* Glow blob */
  body::after {
    content: '';
    position: fixed;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(ellipse, color-mix(in srgb, var(--accent) 18%, transparent) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: blobPulse 6s ease-in-out infinite;
  }

  @keyframes blobPulse {
    0%, 100% { opacity: .8; transform: translateX(-50%) scale(1); }
    50%       { opacity: 1;  transform: translateX(-50%) scale(1.1); }
  }

  /* ─── Layout ─── */
  .page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: clamp(24px, 5vw, 56px);
    max-width: 1100px;
    margin: 0 auto;
  }

  /* ─── Header ─── */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.02em;
  }

  .logo-mark {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--accent);
    display: grid;
    place-items: center;
  }

  .logo-mark svg { display: block; }

  .status-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: .04em;
  }

  .pulse-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 50%, transparent); }
    50%       { opacity: .7; box-shadow: 0 0 0 5px transparent; }
  }

  /* ─── Hero ─── */
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0 40px;
    gap: 40px;
  }

  .eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: .15em;
    color: var(--accent);
    text-transform: uppercase;
  }

  h1 {
    font-size: clamp(52px, 9vw, 110px);
    font-weight: 800;
    line-height: .95;
    letter-spacing: -.04em;
  }

  h1 .line-muted {
    color: var(--muted);
  }

  h1 .line-accent {
    -webkit-text-stroke: 2px var(--accent);
    color: transparent;
  }

  .tagline {
    max-width: 520px;
    font-size: 16px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.7;
  }

  /* ─── Footer ─── */
  footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    gap: 16px;
    flex-wrap: wrap;
  }

  .footer-copy {
    font-size: 13px;
    color: var(--muted);
    font-family: 'JetBrains Mono', monospace;
  }

  /* ─── Floating ticker ─── */
  .ticker {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: color-mix(in srgb, var(--bg) 80%, transparent);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
    z-index: 10;
  }

  .ticker-track {
    display: flex;
    gap: 64px;
    white-space: nowrap;
    animation: tickerScroll 28s linear infinite;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--muted);
    text-transform: uppercase;
  }

  .ticker-track span { color: var(--accent); }

  @keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ─── Responsive ─── */
  @media (max-width: 600px) {
    h1 { font-size: clamp(40px, 13vw, 70px); }
    .input-row { flex-direction: column; }
    footer { flex-direction: column; align-items: flex-start; }
  }