:root {
  --bg: #0a0a0c;
  --bg-alt: #111114;
  --card: #17171b;
  --card-border: #26262c;
  --text: #f5f5f7;
  --text-muted: #a3a3ad;
  --accent: #ff5a1f;
  --accent-2: #ff7a3d;
  --accent-glow: rgba(255, 90, 31, 0.35);
  --radius: 14px;
  --container: 1160px;
  --font-display: 'Archivo Black', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.hl { color: var(--accent); }
.hl-alt { color: var(--bg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: #0a0a0c;
  box-shadow: 0 8px 24px var(--accent-glow);
}
.btn-primary:hover { background: var(--accent-2); }

.btn-ghost {
  border-color: rgba(245,245,247,0.25);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn-outline:hover { background: var(--accent); color: #0a0a0c; }

.btn-dark {
  background: var(--bg);
  color: var(--accent);
  border-color: var(--bg);
}
.btn-dark:hover { background: #000; }

.btn-outline-dark {
  border-color: var(--bg);
  color: var(--bg);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--bg); color: var(--accent); }

.btn-lg { padding: 17px 34px; font-size: 1rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,12,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 26px;
  height: 26px;
  color: var(--text);
  flex-shrink: 0;
}
.logo-icon-lg { width: 56px; height: 56px; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: 2px;
}
.logo-word {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: var(--text);
}
.logo-sub {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color .15s ease;
}
.nav a:hover { color: var(--accent); }

.nav-cta { margin-left: 12px; padding: 10px 22px; }

/* Language switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 3px;
  margin-left: 12px;
  flex-shrink: 0;
}
.lang-switch button {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.lang-switch button:hover { color: var(--text); }
.lang-switch button.active {
  background: var(--accent);
  color: #0a0a0c;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* Broadcast frame — camera-viewfinder corners + vertical side rails, fills wide-screen gutters */
.broadcast-frame {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;
  display: none;
}
@media (min-width: 1400px) {
  .broadcast-frame { display: block; }
}

.corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border-color: rgba(255,90,31,0.4);
}
.corner-tl { top: 16px; left: 16px; border-top: 2px solid; border-left: 2px solid; }
.corner-tr { top: 16px; right: 16px; border-top: 2px solid; border-right: 2px solid; }
.corner-bl { bottom: 16px; left: 16px; border-bottom: 2px solid; border-left: 2px solid; }
.corner-br { bottom: 16px; right: 16px; border-bottom: 2px solid; border-right: 2px solid; }

.side-rail {
  position: absolute;
  top: 50%;
  height: 280px;
  transform: translateY(-50%);
  overflow: hidden;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.side-rail-left { left: 22px; }
.side-rail-right { right: 22px; transform: translateY(-50%) rotate(180deg); }
.side-rail span {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  color: rgba(255,90,31,0.4);
  white-space: nowrap;
  animation: rail-scroll 16s linear infinite;
}
@keyframes rail-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .side-rail span { animation: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 48px 0 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(60% 50% at 80% 0%, var(--accent-glow), transparent 60%),
    radial-gradient(40% 40% at 10% 20%, rgba(255,90,31,0.1), transparent 60%),
    radial-gradient(120% 90% at 50% 15%, #0f0f13, var(--bg) 70%);
}

.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-tv-eyebrow {
  margin-bottom: 22px;
}

.hero-copy-section {
  padding: 100px 0 60px;
}
.hero-video-top {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto 44px;
}
.hero-video-top::before {
  content: "";
  position: absolute;
  inset: -60px -40px;
  background:
    radial-gradient(closest-side, var(--accent-glow), transparent 75%);
  filter: blur(40px);
  opacity: .55;
  z-index: -1;
  pointer-events: none;
}
.hero-copy-below {
  max-width: 700px;
  width: 100%;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  animation: scrollcue-bounce 2.2s ease-in-out infinite;
}
.hero-scroll-cue svg { width: 16px; height: 16px; }
@keyframes scrollcue-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 0 36px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* TV-frame hero video */
.hero-video-col { position: relative; }

.tv-frame {
  position: relative;
  background: linear-gradient(180deg, #0c0c0e, #050506 70%);
  border: 1px solid #1c1c20;
  border-radius: 20px;
  padding: 16px 16px 20px;
  box-shadow:
    0 50px 100px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 0 0 1px rgba(255,90,31,0.08);
}

.tv-stand {
  width: 120px;
  height: 10px;
  margin: 14px auto 0;
  background: linear-gradient(180deg, #141416, #0a0a0c);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}
.tv-stand::before {
  content: "";
  display: block;
  width: 220px;
  height: 4px;
  margin: 0 auto;
  transform: translateY(9px);
  background: linear-gradient(180deg, #141416, #0a0a0c);
  border-radius: 2px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.5);
}

.tv-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px 12px;
}
.tv-logo .logo-icon { width: 22px; height: 22px; }

.tv-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(255,90,31,0.12);
  border: 1px solid rgba(255,90,31,0.35);
  padding: 5px 10px;
  border-radius: 999px;
}
.tv-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { opacity: 0.55; box-shadow: 0 0 0 5px transparent; }
}

.tv-frame .video-wrap {
  border-radius: 10px;
  box-shadow: none;
  border-color: #000;
  animation: tv-power-on 1.1s ease-out both;
  animation-delay: .15s;
}
@keyframes tv-power-on {
  0% { opacity: 0; filter: brightness(3.2) saturate(0); transform: scaleY(0.02); }
  8% { opacity: 1; transform: scaleY(1); }
  16% { filter: brightness(0.3) saturate(0); }
  24% { filter: brightness(2.4) saturate(.3); }
  34% { filter: brightness(0.5); }
  46% { filter: brightness(1.6) saturate(1); }
  60% { filter: brightness(0.85); }
  100% { filter: brightness(1) saturate(1); }
}
@media (prefers-reduced-motion: reduce) {
  .tv-frame .video-wrap { animation: none; }
}

.tv-caption {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 10px 8px;
}
.tv-caption-tag {
  background: var(--accent);
  color: #0a0a0c;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  flex-shrink: 0;
}
.tv-caption-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: -0.01em;
  color: var(--text-muted);
}

.hero-solutions {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--card-border);
}
.hero-solutions-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.hero-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--card-border);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}
.hero-pill svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.hero-pill:hover {
  border-color: var(--accent);
  background: rgba(255,90,31,0.1);
  transform: translateY(-2px);
}

/* Sections */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

.section-eyebrow {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.section-intro {
  color: var(--text-muted);
  max-width: 620px;
  font-size: 1.05rem;
  margin: 0 0 48px;
}

/* Resource cards — curated external institutional links */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}
.resource-card {
  position: relative;
  display: block;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px 24px;
  color: var(--text);
  transition: transform .2s ease, border-color .2s ease;
}
.resource-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.resource-tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,90,31,0.12);
  border: 1px solid rgba(255,90,31,0.3);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.resource-card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.resource-card p { margin: 0; color: var(--text-muted); font-size: 0.9rem; }
.resource-disclaimer { color: var(--text-muted); font-size: 0.78rem; margin: 0; }

/* Press mention — short highlighted media callout */
.press-mention {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  padding: 22px 24px;
  margin: 28px auto 0;
  max-width: 720px;
  border: 1px dashed var(--card-border);
  border-radius: 999px;
}
.press-badge {
  flex-shrink: 0;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
}
.press-text { margin: 0; color: var(--text-muted); font-size: 0.92rem; }
.press-text em { color: var(--text); font-style: normal; font-weight: 600; }
.press-link {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.press-link:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .press-mention { border-radius: var(--radius); padding: 20px; }
}

/* Trust strip — "as seen on" credibility band */
.trust-strip { padding: 44px 0; border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-strip-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}
.trust-strip-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  justify-content: center;
}
.trust-strip-items span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  opacity: 0.65;
  transition: opacity .18s ease, color .18s ease;
}
.trust-strip-items span:hover { opacity: 1; color: var(--text); }

@media (max-width: 700px) {
  .trust-strip-inner { flex-direction: column; gap: 14px; }
}

/* Ad banner (sellable ad space) — designed to look like a real, eye-catching ad */
.ad-banner-wrap { padding: 0 0 96px; }
.ad-banner-wrap.no-top-pad { padding-top: 0; }

.ad-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 32px 36px;
  background:
    repeating-conic-gradient(from 0deg at 88% 50%, rgba(10,10,12,0.09) 0deg 4deg, transparent 4deg 14deg),
    linear-gradient(115deg, var(--accent-2), var(--accent) 55%, #e6480f);
  box-shadow: 0 20px 50px var(--accent-glow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ad-banner:hover { transform: translateY(-3px); box-shadow: 0 26px 60px var(--accent-glow); }

.ad-badge {
  position: absolute;
  top: 18px;
  left: -34px;
  transform: rotate(-45deg);
  width: 150px;
  text-align: center;
  background: #0a0a0c;
  color: #fff;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 5px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.35);
}

.ad-banner-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  color: #0a0a0c;
  opacity: 0.85;
}

.ad-banner-body { flex: 1; min-width: 220px; padding-left: 18px; }
.ad-banner-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: -0.01em;
  color: #0a0a0c;
  margin: 0 0 6px;
}
.ad-banner-sub {
  color: rgba(10,10,12,0.75);
  font-weight: 600;
  font-size: 0.92rem;
  margin: 0;
}

.ad-banner-cta {
  flex-shrink: 0;
  background: #0a0a0c;
  color: #fff !important;
  border-color: #0a0a0c;
}
.ad-banner-cta:hover { background: #000; border-color: #000; }

/* Premium ad slot — the priciest placement, styled to stand out */
.ad-banner-premium {
  padding: 40px 44px;
  background:
    linear-gradient(115deg, #fff7ef, var(--accent-2) 40%, var(--accent) 75%, #e6480f);
  box-shadow: 0 26px 60px var(--accent-glow), 0 0 0 2px rgba(255,255,255,0.25) inset;
}
.ad-banner-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.55) 45%, transparent 60%);
  background-size: 220% 100%;
  animation: premium-shine 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes premium-shine {
  0% { background-position: 140% 0; }
  55%, 100% { background-position: -40% 0; }
}
.ad-badge-premium {
  background: #0a0a0c;
  color: var(--accent-2);
  font-size: 0.68rem;
}
.ad-banner-premium .ad-banner-title { font-size: 1.9rem; }
.ad-banner-premium .ad-banner-icon { width: 54px; height: 54px; }

/* Free / community network banner — deliberately quieter than the paid slots */
.ad-banner-free {
  background: var(--card);
  border: 1.5px dashed rgba(255,90,31,0.4);
  box-shadow: none;
}
.ad-banner-free::after { display: none; }
.ad-banner-free .ad-banner-icon { color: var(--accent); }
.ad-banner-free .ad-banner-title { color: var(--text); font-size: 1.3rem; }
.ad-badge-free {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

@media (max-width: 600px) {
  .ad-banner { padding: 34px 20px 24px; text-align: center; justify-content: center; }
  .ad-banner-body { padding-left: 0; }
  .ad-banner-cta { width: 100%; }
  .ad-banner-premium { padding: 38px 22px 26px; }
}

/* Visibility / storytelling section — broadcast-style animated showcase */
.visibility-section {
  position: relative;
  overflow: hidden;
}
.broadcast-sweep {
  position: absolute;
  top: 0;
  left: -30%;
  width: 40%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,90,31,0.09) 45%, transparent 90%);
  animation: sweep-move 9s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sweep-move {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(340%); }
}

.visibility-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.visibility-step {
  text-align: center;
  padding: 8px;
}
.visibility-step:nth-child(1) { transition-delay: 0s; }
.visibility-step:nth-child(2) { transition-delay: .15s; }
.visibility-step:nth-child(3) { transition-delay: .3s; }

.visibility-icon-wrap {
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 35% 30%, rgba(255,90,31,0.22), var(--card) 70%);
  border: 1px solid var(--card-border);
  color: var(--accent);
  position: relative;
}
.visibility-icon-wrap::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(255,90,31,0.3);
  animation: icon-ring-spin 14s linear infinite;
}
@keyframes icon-ring-spin {
  to { transform: rotate(360deg); }
}
.visibility-icon-wrap svg { width: 36px; height: 36px; }

.visibility-step h3 { margin: 0 0 8px; font-size: 1.1rem; }
.visibility-step p { margin: 0; color: var(--text-muted); font-size: 0.92rem; }

@media (max-width: 760px) {
  .visibility-steps { grid-template-columns: 1fr; gap: 40px; }
}

/* Video */
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--card-border);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.entrevista-cta { margin-top: 32px; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .2s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.service-card-highlight {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(255,90,31,0.14), var(--card) 60%);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a0a0c;
  background: var(--accent);
  padding: 5px 10px;
  border-radius: 999px;
}
.service-badge-soon {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--card-border);
}

.service-icon {
  width: 52px;
  height: 52px;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-size: 1.15rem;
  margin: 0 0 10px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin: 0;
}

/* Norvi News section */
.norvinews-section {
  background: var(--accent);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.norvinews-inner {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-eyebrow-alt {
  color: rgba(10,10,12,0.65);
}
.section-title-alt {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--bg);
}
.norvinews-text {
  color: rgba(10,10,12,0.8);
  font-size: 1.05rem;
  margin: 0 0 32px;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero decorative orbit */
.hero-orbit {
  position: absolute;
  top: -220px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px dashed rgba(255,90,31,0.25);
  pointer-events: none;
  animation: spin 60s linear infinite;
}
.hero-orbit::before {
  content: "";
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px dashed rgba(255,90,31,0.18);
}

/* Floating color glow orbs — fill the side gutters with slow ambient movement */
.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.4;
  z-index: 0;
}
.hero-glow-orb-a {
  width: 320px;
  height: 320px;
  left: -80px;
  top: 12%;
  background: var(--accent);
  animation: orb-float-a 13s ease-in-out infinite;
}
.hero-glow-orb-b {
  width: 260px;
  height: 260px;
  right: -70px;
  bottom: 14%;
  background: var(--accent-2);
  animation: orb-float-b 16s ease-in-out infinite;
}
.hero-glow-orb-c {
  width: 200px;
  height: 200px;
  right: 6%;
  top: 6%;
  background: #ffb37a;
  opacity: 0.25;
  animation: orb-float-c 19s ease-in-out infinite;
}
@keyframes orb-float-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 60px) scale(1.12); }
}
@keyframes orb-float-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, -50px) scale(1.08); }
}
@keyframes orb-float-c {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 40px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-glow-orb { animation: none; }
}
@media (max-width: 760px) {
  .hero-glow-orb { display: none; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Tilt cards */
.tilt-card { will-change: transform; }

/* Sobre mí / Über mich */
.sobremi-section { padding: 96px 0; }
.sobremi-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}
.sobremi-photo {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(255,90,31,0.35), transparent 60%),
    var(--card);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sobremi-content p { color: var(--text-muted); font-size: 1rem; margin: 0 0 18px; }
.sobremi-content p:first-of-type { color: var(--text); }
.sobremi-note {
  font-size: 0.82rem !important;
  color: #6b6b74 !important;
  border-top: 1px solid var(--card-border);
  padding-top: 16px;
  margin-top: 8px !important;
}

/* Portfolio */
.portfolio-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.portfolio-skills .tag {
  background: var(--card);
  border: 1px solid var(--card-border);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  transition: border-color .18s ease, color .18s ease;
}
.portfolio-skills .tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.timeline {
  position: relative;
  margin-bottom: 8px;
  padding-left: 8px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--card-border);
}
.timeline-item {
  position: relative;
  padding-left: 38px;
  margin-bottom: 30px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--bg-alt);
}
.timeline-date {
  display: block;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-body h3 { margin: 0 0 6px; font-size: 1.05rem; }
.timeline-body p { margin: 0; color: var(--text-muted); font-size: 0.92rem; }

.portfolio-video-cta { margin-top: 32px; }

/* Asesoría / booking section */
.asesoria-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}
.asesoria-orbit {
  top: auto;
  bottom: -260px;
  left: -180px;
  right: auto;
}

.asesoria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 24px;
}

.asesoria-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.asesoria-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.asesoria-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
  flex-shrink: 0;
  width: 52px;
}
.asesoria-step h3 { margin: 0 0 6px; font-size: 1.1rem; }
.asesoria-step p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

.asesoria-form-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
}
.asesoria-form-card h3 { margin: 0 0 6px; font-size: 1.3rem; }
.asesoria-form-card > p { margin: 0 0 24px; color: var(--text-muted); font-size: 0.95rem; }

.booking-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.booking-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: vertical;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-note {
  margin: 14px 0 0;
  font-size: 0.88rem;
  color: var(--accent);
  text-align: center;
}

/* Marquee */
.marquee {
  width: 100%;
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid rgba(10,10,12,0.2);
  border-bottom: 1px solid rgba(10,10,12,0.2);
  padding: 10px 0;
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  padding-right: 8px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Norvi News teaser strip on home */
.norvinews-teaser {
  background: var(--accent);
  color: var(--bg);
}
.norvinews-teaser-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 56px 24px;
}
.section-eyebrow-alt { color: rgba(10,10,12,0.65); }
.section-title-alt {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--bg);
}
.norvinews-text { color: rgba(10,10,12,0.8); margin: 0; }

/* Sticky booking CTA */
.sticky-cta {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 90;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, background .2s ease, color .2s ease;
}
.sticky-cta:hover { background: var(--accent); color: #0a0a0c; }
.sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* Footer */
.site-footer {
  background: #050506;
  border-top: 1px solid var(--card-border);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p:last-child {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
}
.footer-col h4 {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text); font-size: 0.95rem; transition: color .15s ease; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding: 24px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer-legal { margin-top: 6px; font-size: 0.78rem; }
.footer-legal a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 2px; }
.footer-legal a:hover { color: var(--accent); }

/* Back to top */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0c;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px var(--accent-glow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 90;
}
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* Responsive */
@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--card-border);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--card-border); }

  .hero { padding: 88px 0 56px; }
  .hero-copy-section { padding: 64px 0; }
  .tv-stand { width: 90px; }
  .tv-stand::before { width: 160px; }
  .hero-scroll-cue { bottom: 14px; }
  .section { padding: 64px 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .asesoria-grid { grid-template-columns: 1fr; }
  .sobremi-inner { grid-template-columns: 1fr; }
  .sobremi-photo { width: 140px; aspect-ratio: 1; }
  .lang-switch { margin-left: 8px; }
  .lang-switch button { padding: 5px 8px; font-size: 0.68rem; }
  .sticky-cta { left: 16px; bottom: 16px; padding: 12px 18px; font-size: 0.82rem; }
  .back-to-top { right: 16px; bottom: 16px; }
  .hero-orbit { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .hero-orbit, .marquee-track { animation: none; }
}
