/* ─────────────────────────────────────────────────────────────
   Telzo V2 Hero — standalone stylesheet
   All classes prefixed with .telzo- to avoid clashes with host CSS.
   ───────────────────────────────────────────────────────────── */

:root {
  /* Brand refresh (April 2026): Signal Navy primary + Signal Amber campaign accent */
  --telzo-sky: #F5A524;
  --telzo-sky-soft: rgba(245, 165, 36, 0.35);
  --telzo-sky-glow: rgba(245, 165, 36, 0.55);
  --telzo-navy: #1E3E6E;
  --telzo-text: rgba(255,255,255,0.96);
  --telzo-text-muted: rgba(220,228,245,0.72);
  --telzo-text-dim: rgba(200,212,235,0.5);
  --telzo-font-display: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --telzo-font-ui: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

/* Hero shell */
.telzo-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  color: var(--telzo-text);
  font-family: var(--telzo-font-ui);
  -webkit-font-smoothing: antialiased;
  background: #06142E;
}
.telzo-hero *, .telzo-hero *::before, .telzo-hero *::after { box-sizing: border-box; }

.telzo-hero-bg {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}
.telzo-hero-bg canvas { display: block; width: 100% !important; height: 100% !important; }
.telzo-hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, transparent 0%, rgba(10, 20, 50, 0.35) 70%, rgba(5, 10, 30, 0.75) 100%);
  pointer-events: none;
}

/* Header */
.telzo-header {
  position: relative; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 48px;
}
.telzo-brand { height: 34px; }
.telzo-brand img { height: 100%; width: auto; display: block; }

/* Large T-mark watermark — brand flourish behind the orbit column */
.telzo-hero-mark {
  position: absolute;
  right: -120px; top: 50%;
  transform: translateY(-50%);
  width: 820px; height: auto;
  z-index: 2; pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: screen;
}
.telzo-hero-mark img { width: 100%; height: auto; display: block; }
@media (max-width: 900px) {
  .telzo-hero-mark { width: 520px; right: -140px; opacity: 0.04; }
}
.telzo-nav { display: flex; gap: 28px; font-size: 15px; font-weight: 600; color: var(--telzo-text-muted); }
.telzo-nav a { color: inherit; text-decoration: none; transition: color .2s; }
.telzo-nav a:hover { color: white; }
.telzo-login {
  padding: 9px 16px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  color: white; font-size: 13px; font-weight: 500; text-decoration: none;
  white-space: nowrap; transition: background .2s, border-color .2s;
}
.telzo-login:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.24); }

/* Copy */
.telzo-hero-body {
  position: relative; z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  padding: 24px 48px 80px;
  max-width: 1400px; margin: 0 auto; gap: 32px;
}
.telzo-copy { max-width: 620px; text-align: left; justify-self: start; }
.telzo-copy p.lede { margin-left: 0; margin-right: 0; }
.telzo-ctas { justify-content: flex-start !important; }
.telzo-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px; font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--telzo-text);
}
.telzo-pill .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--telzo-sky);
  box-shadow: 0 0 0 3px rgba(245, 165, 36, .25), 0 0 12px var(--telzo-sky-glow);
  animation: telzo-pulse 2s ease-in-out infinite;
}
@keyframes telzo-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.7; transform:scale(1.15); }
}
.telzo-copy h1 {
  font-family: var(--telzo-font-display);
  font-weight: 600; font-size: clamp(44px, 5.4vw, 78px);
  line-height: 1.02; letter-spacing: -.035em;
  margin: 20px 0 20px; color: white; text-wrap: balance;
}
.telzo-copy h1 .accent {
  background: linear-gradient(100deg, #fff 0%, var(--telzo-sky) 55%, #fff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: telzo-shimmer 6s ease-in-out infinite;
}
@keyframes telzo-shimmer { 0%,100% { background-position: 0% 0%; } 50% { background-position: 100% 0%; } }
.telzo-copy p.lede {
  font-size: 17px; line-height: 1.55; color: var(--telzo-text-muted);
  max-width: 48ch; margin: 0 auto 34px; text-wrap: pretty;
}
.telzo-ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.telzo-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; border-radius: 999px;
  font-family: var(--telzo-font-ui); font-size: 14px; font-weight: 600;
  text-decoration: none; cursor: pointer;
  border: 1px solid transparent; white-space: nowrap;
  transition: transform .15s, background .2s, border-color .2s;
}
.telzo-btn:hover { transform: translateY(-1px); }
.telzo-btn-primary { background: white; color: var(--telzo-navy); }
.telzo-btn-primary:hover { background: #F6F4EE; }
.telzo-btn-ghost { color: white; border-color: rgba(255,255,255,.22); }
.telzo-btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.34); }

/* Orbit */
.telzo-orbit-stage {
  position: relative; width: 100%; aspect-ratio: 1/1;
  max-width: 640px; margin: 0 auto;
}
.telzo-orbit-ring { position: absolute; inset: 6%; border-radius: 50%; border: 1px dashed rgba(255,255,255,.12); }
.telzo-orbit-ring.inner { inset: 22%; border-color: rgba(255,255,255,.07); }
.telzo-orbit-ring.outer { inset: -4%; border-color: rgba(255,255,255,.06); }
.telzo-orbit-center {
  position: absolute; left: 50%; top: 50%; width: 38%; aspect-ratio: 1/1;
  transform: translate(-50%,-50%); border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(245, 165, 36, .35) 0%, rgba(245, 165, 36, .18) 35%, transparent 70%);
  filter: blur(6px); z-index: 1; pointer-events: none;
}
.telzo-orbit-center::after {
  content:''; position:absolute; inset:30%; border-radius:50%;
  background: radial-gradient(circle, rgba(255,255,255,.5), transparent 70%); filter: blur(8px);
}
.telzo-orbit-tile {
  position: absolute; left: 50%; top: 50%; width: 320px;
  transform-origin: center; transition: filter .5s ease;
  will-change: transform, opacity;
}
.telzo-orbit-tile .card {
  position: relative; background: white; border-radius: 14px; padding: 10px;
  box-shadow: 0 1px 2px rgba(0,0,0,.1), 0 18px 40px -10px rgba(0,20,60,.55), 0 2px 8px rgba(0,0,0,.15);
  overflow: hidden;
}
.telzo-orbit-tile .card img { display: block; width: 100%; height: auto; border-radius: 6px; }

/* Text-only "And much more" tile */
.telzo-orbit-tile .card.more {
  background: linear-gradient(135deg, #264E8A 0%, #1E3E6E 55%, #06142E 100%);
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  padding: 24px; text-align: center; position: relative;
}
.telzo-orbit-tile .card.more::before {
  content: ''; position: absolute;
  top: 14px; right: 14px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--telzo-sky);
  box-shadow: 0 0 0 3px rgba(245,165,36,.25), 0 0 14px var(--telzo-sky-glow);
}
.telzo-orbit-tile .card.more .more-title {
  font-family: var(--telzo-font-display);
  font-size: 28px; font-weight: 600;
  letter-spacing: -0.015em; line-height: 1.05;
  background: linear-gradient(100deg, #fff 0%, var(--telzo-sky) 60%, #fff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.telzo-orbit-tile .card.more .more-sub {
  font-size: 11px; color: rgba(255,255,255,0.55);
  margin-top: 10px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
}
.telzo-orbit-tile .label {
  position: absolute; top: 100%; left: 50%;
  transform: translate(-50%, 12px); white-space: nowrap;
  padding: 5px 11px; background: rgba(14,29,68,.72);
  border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(6px);
  border-radius: 999px; font-size: 11px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase; color: white;
  opacity: 0; transition: opacity .4s;
}
.telzo-orbit-tile.focused .label { opacity: 1; }
.telzo-orbit-tile.focused .card {
  box-shadow:
    0 0 0 1.5px var(--telzo-sky),
    0 0 0 8px rgba(245, 165, 36, .15),
    0 30px 80px -10px rgba(245, 165, 36, .45),
    0 8px 24px rgba(0,0,0,.3);
}

.telzo-orbit-label {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 4px;
  text-align: center; pointer-events: none; min-width: 160px;
}
.telzo-orbit-label .eyebrow {
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--telzo-sky); opacity: .85; font-weight: 600;
}
.telzo-orbit-label .title-wrap { position: relative; height: 28px; overflow: hidden; width: 100%; }
.telzo-orbit-label .title {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--telzo-font-display); font-size: 20px; font-weight: 600;
  letter-spacing: -.01em; color: white;
  opacity: 0; transform: translateY(14px); transition: opacity .5s, transform .5s;
}
.telzo-orbit-label .title.current { opacity: 1; transform: translateY(0); }
.telzo-orbit-label .title.leaving { opacity: 0; transform: translateY(-14px); }

@media (max-width: 900px) {
  .telzo-header { padding: 20px 24px; }
  .telzo-nav { display: none; }
  .telzo-orbit-tile { width: 210px; }
  .telzo-hero-body {
    grid-template-columns: minmax(0, 1fr);
    padding: 24px 24px 80px;
    justify-items: center;
  }
  .telzo-copy { text-align: center; justify-self: center; }
  .telzo-copy p.lede { margin-left: auto; margin-right: auto; }
  .telzo-ctas { justify-content: center !important; }
  .telzo-orbit-stage { max-width: 520px; }
}
